    .no-scroll {
      overflow: hidden !important;
    }

    :root {
      --bg: #f6f5f3;
      --text: #111;
      --muted: #777;
      --accent: #b08a57;
      --white: #fff;
      --radius: 22px;
      --shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
    }

    /* ================= RESET ================= */
    /* Hide hamburger on desktop */
    .hamburger {
      display: none;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      min-height: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #eae9e6;
      color: var(--text);
      overflow-y: auto;
      /* ? allow vertical scroll */
      overflow-x: hidden;
      /* prevent horizontal scroll */
    }

    /* ================= PAGE FRAME ================= */

    .page-shell {
      min-height: 100vh;
    }

    .page-shell-inner {
      min-height: 100%;
      background: var(--bg);
      /* Handled by page, navbar is separate */
      border-radius: 28px;
      display: flex;
      flex-direction: column;
    }

    /* ================= ANNOUNCEMENT BAR ================= */
    .announcement-bar {
      background: linear-gradient(to right, rgba(132, 146, 195, 0.08), rgba(132, 146, 195, 0.15), rgba(132, 146, 195, 0.08));
      color: #6e7eb0;
      /* Soft Blue */
      text-align: center;
      padding: 12px 0;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      width: 100%;
      border-bottom: 1px solid rgba(132, 146, 195, 0.1);
    }

    /* ================= NAVBAR ================= */

    .navbar {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 9px 4% 9px 15px;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    }

    .logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .nav-logo-img {
      height: 50px;
      width: auto;
      object-fit: contain;
      transform: scale(3.5) translateY(1.5px);
      transform-origin: left center;
    }

    .brand {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: #4a5a7d;
      /* Cloudy Deep Blue */
      position: relative;
      display: inline-block;
      cursor: pointer;
      transition: all 0.4s ease;
      text-shadow: 0 2px 10px rgba(132, 146, 195, 0.2);
    }


    .brand:hover {
      color: #7484b3;
      transform: translateY(-1px);
    }


    .nav-links {
      margin-left: 160px;
    }


    .nav-links a {
      margin: 0 22px;
      text-decoration: none;
      color: #667;
      font-size: 15px;
      font-weight: 500;
      position: relative;
      z-index: 10;
      cursor: pointer;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #4a5a7d;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-left: auto;
      /* Removed right margin to push to far right */
    }

    .cart-btn,
    .search-btn {
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      color: #556080;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      transition: all 0.3s ease;
    }

    .cart-btn:hover,
    .search-btn:hover {
      color: #4a5a7d;
      transform: scale(1.1);
    }

    .cart-count {
      position: absolute;
      top: 0;
      right: -4px;
      background: #8492c3;
      /* Soft Blue badge */
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      padding: 2px 6px;
      border-radius: 999px;
      box-shadow: 0 2px 8px rgba(132, 146, 195, 0.4);
    }

    .search {
      display: none;
      /* Removed entirely per user request */
    }

    .login-btn {
      padding: 12px 28px;
      border-radius: 40px;
      background: linear-gradient(135deg, #8492c3, #6e7eb0);
      color: #fff;
      border: none;
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(132, 146, 195, 0.3);
    }

    .login-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(132, 146, 195, 0.5);
      background: linear-gradient(135deg, #8fa1da, #7889c2);
    }

    /* ================= MAIN CONTENT ================= */

    .container {
      display: grid;
      grid-template-columns: 1fr 520px;
      gap: 72px;

      padding: 32px 72px 72px;
      align-items: start;
      /* ?? prevents vertical stretching */
    }

    /* ================= LEFT ================= */

    .left {
      max-width: 520px;
    }

    .subtitle {
      font-size: 12px;
      letter-spacing: 1px;
      color: var(--muted);
    }

    .left h1 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      line-height: 1.3;
      margin: 22px 0 18px;
    }

    .left h1 span {
      color: var(--accent);
    }

    .signup-text {
      font-size: 14px;
    }

    .signup-text a {
      margin-left: 6px;
      text-decoration: none;
      border-bottom: 1px solid #111;
      color: #111;
    }

    /* ================= ABOUT CARD ================= */

    .image-card {
      position: relative;
      width: 420px;
      height: 230px;
      margin-top: 36px;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-overlay {
      position: absolute;
      inset: 0;
      padding: 28px;
      display: flex;
      align-items: flex-end;
      background: linear-gradient(to top,
          rgba(0, 0, 0, 0.65),
          rgba(0, 0, 0, 0.25),
          transparent);
      color: #fff;
    }

    .image-overlay h4 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      margin-bottom: 6px;
    }

    .image-overlay p {
      font-size: 14px;
      line-height: 1.6;
    }

    /* ================= RIGHT IMAGE ================= */


    .right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 32px;
      /* ?? space so bottom curve is visible */
    }

    .image-wrapper {
      position: relative;

      width: 100%;
      max-width: 520px;
      height: 600px;
      /* ?? controlled height */

      border-radius: 28px;
      /* full rounded */
      overflow: hidden;

      background: #ddd;
      /* safety background */
    }

    /* IMAGE ITSELF */
    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 12%;
      display: block;
      /* removes inline gaps */
    }

    /* ================= MODAL BACKDROP ================= */

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(132, 146, 195, 0.15);
      /* Soft Blue Tint */
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1001;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .modal-backdrop.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* ================= MODAL CARD ================= */

    .modal-card {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(20px);
      width: 400px;
      padding: 40px;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 20px 50px rgba(132, 146, 195, 0.15);
      position: relative;
      animation: modalIn 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 18px;
      background: none;
      border: none;
      font-size: 22px;
      cursor: pointer;
      color: var(--muted);
    }

    .modal-card h2 {
      font-size: 18px;
      margin-bottom: 26px;
    }

    /* ================= FORM ================= */

    .modal-card label {
      display: block;
      font-size: 13px;
      margin-bottom: 20px;
    }

    .modal-card input {
      width: 100%;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
      font-size: 14px;
      outline: none;
    }

    .form-row {
      display: flex;
      justify-content: flex-end;
      margin: 16px 0 24px;
    }

    .forgot {
      font-size: 12px;
      color: var(--muted);
      text-decoration: none;
    }

    /* ================= BUTTON ================= */

    .submit-btn {
      width: 100%;
      padding: 16px;
      border-radius: 40px;
      background: linear-gradient(135deg, #8492c3, #6e7eb0);
      color: #fff;
      border: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(132, 146, 195, 0.3);
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(132, 146, 195, 0.4);
      background: linear-gradient(135deg, #8fa1da, #7889c2);
    }

    .submit-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* ================= MOBILE RESPONSIVE ================= */

    @media (max-width: 1024px) {

      /* PAGE FRAME */
      .page-shell-inner {
        border-radius: 0;
      }

      /* NAVBAR */
      .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 8px 4px 14px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
        border-radius: 0;
      }

      .nav-actions {
        margin-right: 0;
        gap: 6px;
      }

      .login-btn {
        padding: 8px 12px;
        font-size: 11px;
      }

      .nav-links {
        display: none;
        /* desktop links hidden */
      }

      .hamburger {
        background: none;
        border: none;
        font-size: 26px;
        cursor: pointer;
        margin-right: 12px;
      }

      /* LOGO CENTERING */
      .brand {
        font-size: 17px !important;
        letter-spacing: 2px !important;
      }

      .logo {
        display: flex;
        align-items: center;
        margin-right: auto;
      }

      .nav-logo-img {
        transform: scale(2.2) translateY(1.2px);
      }

      /* SEARCH SMALLER */
      .search {
        display: none;
      }

      /* MAIN LAYOUT */
      .container {
        grid-template-columns: 1fr;
        padding: 24px 20px 48px;
      }

      /* LEFT CONTENT FULL WIDTH */
      .left {
        max-width: 100%;
      }

      .left h1 {
        font-size: 32px;
      }

      /* ABOUT CARD RESPONSIVE */
      .image-card {
        width: 100%;
        height: 200px;
      }

      /* MODAL RESPONSIVE */
      .modal-card {
        width: 90%;
        max-width: 360px;
        padding: 28px;
      }
    }

    @media (max-width: 1024px) {
      .hamburger {
        display: block;
      }
    }

    /* ================= MOBILE NAV � Premium Redesign ================= */

    .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 290px;
      height: 100dvh;
      background: linear-gradient(160deg, #f0f4f8 0%, #ffffff 100%);
      box-shadow: 6px 0 40px rgba(132, 146, 195, 0.15);
      border-right: 1px solid rgba(255, 255, 255, 0.5);
      transform: translateX(-100%);
      transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
      z-index: 2200;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .mobile-nav.active {
      transform: translateX(0);
    }

    /* ---- Header ---- */
    .mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 30px 20px 30px;
    }

    .mobile-nav-brand {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .mobile-nav-logo {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #8492c3, #8ebcb7);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      font-family: 'Playfair Display', serif;
      box-shadow: 0 4px 12px rgba(132, 146, 195, 0.4);
    }

    .mobile-nav-brand-name {
      font-size: 20px;
      font-weight: 700;
      color: #4a5a7d;
      font-family: 'Playfair Display', serif;
      letter-spacing: 2px;
    }

    .mobile-nav-brand-tag {
      font-size: 10px;
      color: #8ebcb7;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 500;
      margin-top: 1px;
    }

    /* ---- Close button ---- */
    .close-nav {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(132, 146, 195, 0.1);
      border: 1px solid rgba(132, 146, 195, 0.2);
      color: #8492c3;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .close-nav:hover {
      background: rgba(132, 146, 195, 0.2);
      transform: rotate(90deg);
    }

    /* ---- Divider ---- */
    .mobile-nav-divider {
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(132, 146, 195, 0.3), transparent);
      margin: 0 20px;
    }

    /* ---- Links container ---- */
    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 16px 12px;
      flex: 1;
    }

    /* ---- Individual link ---- */
    .mobile-nav-link {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      border-radius: 15px;
      text-decoration: none;
      color: #111;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      position: relative;

      /* Staggered slide-in animation */
      opacity: 0;
      transform: translateX(-20px);
      animation: none;
    }

    /* Trigger animation when nav is active */
    .mobile-nav.active .mobile-nav-link {
      animation: navLinkSlideIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: calc(0.05s + var(--i, 0) * 0.06s);
    }

    @keyframes navLinkSlideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .mobile-nav-link:hover {
      background: rgba(132, 146, 195, 0.12);
      color: rgba(255, 255, 255, 0.9);
    }

    /* Active / current page */
    .mobile-nav-link.active {
      background: linear-gradient(135deg, rgba(132, 146, 195, 0.15), rgba(255, 255, 255, 0.5));
      color: #4a5a7d;
      border: 1px solid rgba(132, 146, 195, 0.2);
      box-shadow: 0 4px 15px rgba(132, 146, 195, 0.1);
    }


    /* ---- Bottom footer ---- */
    .mobile-nav-footer {
      padding: 16px 20px 28px;
      border-top: 1px solid rgba(132, 146, 195, 0.12);
    }


    /* ---- Links Scrollable Container ---- */
    .mobile-nav-links-scroll {
      flex: 1;
      overflow-y: auto;
      padding-bottom: 40px;
      scrollbar-width: none;
    }

    .mobile-nav-links-scroll::-webkit-scrollbar {
      display: none;
    }

    /* ---- Accordion Styling ---- */
    .mobile-accordion-item {
      opacity: 0;
      transform: translateX(-20px);
    }

    .mobile-nav.active .mobile-accordion-item {
      animation: navLinkSlideIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
      animation-delay: calc(0.05s + var(--i, 0) * 0.06s);
    }

    .expandable-trigger {
      justify-content: space-between;
      cursor: pointer;
      display: flex;
      align-items: center;
    }

    .chevron-icon {
      transition: transform 0.3s ease;
      color: #aaa;
    }

    .expandable-trigger.open .chevron-icon {
      transform: rotate(180deg);
      color: #4a5a7d;
    }

    .mobile-accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      background: rgba(255, 255, 255, 0.4);
    }

    .mobile-accordion-content.open {
      max-height: 1000px;
      /* Large enough to hold content */
    }

    /* ---- Dynamic Category Items ---- */
    .drawer-category-list {
      padding: 12px 16px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      border-top: 1px solid #eee;
    }

    .drawer-cat-item {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: #444;
      padding: 8px 0;
      transition: all 0.2s ease;
    }

    .drawer-cat-item:active {
      transform: scale(0.98);
    }

    .drawer-cat-thumb {
      width: 55px;
      height: 70px;
      border-radius: 4px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .drawer-cat-label {
      font-size: 14px;
      font-weight: 500;
    }

    .drawer-cat-tag {
      font-size: 10px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-left: 4px;
    }

    .tag-new {
      background: #27ae60;
      color: #fff;
    }

    .tag-trending {
      background: #27ae60;
      color: #fff;
    }

    .tag-hot {
      background: #e74c3c;
      color: #fff;
    }

    /* ---- Loaders ---- */
    .accordion-loader {
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 13px;
      color: #999;
    }

    .mini-spinner {
      width: 16px;
      height: 16px;
      border: 2px solid rgba(132, 146, 195, 0.1);
      border-top-color: #8492c3;
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .mobile-nav-tagline {
      font-size: 11px;
      color: #999;
      text-align: center;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* Overlay behind menu */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      z-index: 2100;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .mobile-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 6px;
      text-decoration: none;
      color: #555;
      font-weight: 500;
    }

    .nav-links a.active {
      color: #000;
    }

    /* underline animation */
    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 100%;
      height: 2px;
      background: #8492c3;
      /* Light Blue underline */
      border-radius: 2px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: #8492c3;
      transition: all 0.3s ease;
    }

    .nav-links a:hover::after {
      left: 0;
      width: 100%;
    }

    /* ================= CART & PROFILE DRAWER � Dark Theme ================= */

    .cart-overlay,
    #profileOverlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      z-index: 2100;
    }

    .cart-overlay.active,
    #profileOverlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    /* ---- Drawer shell ---- */
    .cart-drawer,
    .profile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: 400px;
      height: 100dvh;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      box-shadow: none;
      border-radius: 28px 0 0 28px;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
      z-index: 2200;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-left: 1px solid rgba(255, 255, 255, 0.3);
    }

    .cart-drawer.active,
    .profile-drawer.active {
      transform: translateX(0);
      box-shadow: -8px 0 48px rgba(132, 146, 195, 0.15);
    }

    /* ---- Header ---- */
    .cart-header {
      padding: 26px 24px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(132, 146, 195, 0.15);
      flex-shrink: 0;
    }

    .cart-header h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 600;
      color: #4a5a7d;
      letter-spacing: 0.3px;
    }

    /* Close button � matches mobile nav style */
    .close-cart {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(132, 146, 195, 0.1);
      border: 1px solid rgba(132, 146, 195, 0.2);
      color: #8492c3;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 15px;
      transition: all 0.25s ease;
    }

    .close-cart:hover {
      background: rgba(132, 146, 195, 0.2);
      border-color: rgba(132, 146, 195, 0.4);
      color: #4a5a7d;
      transform: rotate(90deg);
    }

    /* ---- Cart items scroll area ---- */
    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 0;
      /* Custom scrollbar */
      scrollbar-width: thin;
      scrollbar-color: rgba(132, 146, 195, 0.3) transparent;
    }

    .cart-items::-webkit-scrollbar {
      width: 4px;
    }

    .cart-items::-webkit-scrollbar-track {
      background: transparent;
    }

    .cart-items::-webkit-scrollbar-thumb {
      background: rgba(132, 146, 195, 0.3);
      border-radius: 4px;
    }

    /* ---- Single cart item ---- */
    .cart-item {
      position: relative;
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 14px;
      padding: 14px;
      padding-right: 40px;
      align-items: center;
      background: rgba(132, 146, 195, 0.05);
      border: 1px solid rgba(132, 146, 195, 0.2);
      border-radius: 14px;
      transition: background 0.2s;

      /* Staggered fade-in */
      animation: cartItemIn 0.35s ease forwards;
    }

    .cart-item:hover {
      background: rgba(132, 146, 195, 0.1);
    }

    @keyframes cartItemIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cart-item img {
      width: 72px;
      height: 90px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .cart-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .cart-item h4 {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 6px;
      color: #333;
      line-height: 1.3;
    }

    .cart-meta {
      font-size: 11px;
      color: #777;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cart-price {
      font-weight: 700;
      font-size: 14px;
      color: #4a5a7d;
    }

    /* ---- Remove button ---- */
    .remove-item {
      position: absolute;
      top: 10px;
      right: 10px;
      background: rgba(132, 146, 195, 0.1);
      border: 1px solid rgba(132, 146, 195, 0.2);
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      cursor: pointer;
      color: #8492c3;
      transition: all 0.2s;
    }

    .remove-item:hover {
      color: #ff6b6b;
      border-color: rgba(255, 107, 107, 0.4);
      background: rgba(255, 107, 107, 0.12);
      transform: scale(1.1);
    }

    /* ---- Qty controls ---- */
    .cart-qty {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 6px 0 0;
      background: rgba(132, 146, 195, 0.05);
      padding: 3px 6px;
      border-radius: 20px;
      border: 1px solid rgba(132, 146, 195, 0.15);
    }

    .qty-btn {
      width: 24px;
      height: 24px;
      border: none;
      border-radius: 50%;
      background: rgba(132, 146, 195, 0.15);
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4a5a7d;
      transition: background 0.2s;
    }

    .qty-btn:hover {
      background: rgba(132, 146, 195, 0.35);
    }

    .qty-value {
      min-width: 20px;
      text-align: center;
      font-size: 13px;
      font-weight: 600;
      color: #8492c3;
    }

    /* ---- Cart footer ---- */
    .cart-footer {
      padding: 16px 20px 20px;
      border-top: 1px solid rgba(132, 146, 195, 0.15);
      background: rgba(255, 255, 255, 0.4);
      border-radius: 0 0 0 28px;
    }

    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .cart-subtotal span {
      font-size: 13px;
      color: #555;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .cart-subtotal strong {
      font-size: 22px;
      font-weight: 700;
      color: #4a5a7d;
    }

    /* Checkout / Action button */
    .checkout-btn {
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, #8492c3, #6e7eb0);
      border: none;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 40px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(132, 146, 195, 0.3);
    }

    .checkout-btn:hover {
      background: linear-gradient(135deg, #8ebcb7, #6da8a2);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(142, 188, 183, 0.35);
    }

    /* ---- Profile drawer links ---- */
    .profile-links button:hover {
      background: rgba(132, 146, 195, 0.15) !important;
      border-color: rgba(132, 146, 195, 0.3) !important;
      transform: translateY(-1px);
    }

    /* ================= CART CONFIRM POPUP ================= */
    .confirm-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      animation: fadeIn 0.3s forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    /* ================= PROFESSIONAL SUCCESS TOAST ================= */
    .success-toast {
      position: fixed;
      top: 30px;
      right: 30px;
      background: #ffffff;
      padding: 16px 24px;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 16px;
      z-index: 11000;
      transform: translateX(120%);
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(0, 0, 0, 0.05);
      min-width: 320px;
    }

    .success-toast.active {
      transform: translateX(0);
    }

    .toast-icon-wrapper {
      width: 42px;
      height: 42px;
      background: #f0f7f6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .toast-checkmark {
      width: 20px;
      height: 20px;
      stroke: #8ebcb7;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      stroke-dasharray: 50;
      stroke-dashoffset: 50;
    }

    .success-toast.active .toast-checkmark {
      animation: drawToastCheck 0.6s ease forwards 0.3s;
    }

    .toast-content {
      flex: 1;
    }

    .toast-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 2px;
    }

    .toast-msg {
      font-size: 13px;
      color: #777;
    }

    .toast-close-btn {
      background: none;
      border: none;
      color: #999;
      font-size: 20px;
      cursor: pointer;
      position: absolute;
      top: 10px;
      right: 12px;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s;
    }

    .toast-close-btn:hover {
      background: #f5f5f5;
      color: #111;
    }

    .toast-progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: #8ebcb7;
      width: 100%;
      transform-origin: left;
      transform: scaleX(0);
      border-radius: 0 0 0 16px;
    }

    .success-toast.active .toast-progress-bar {
      animation: toastProgress 2.2s linear forwards 0.6s;
    }

    @keyframes drawToastCheck {
      to {
        stroke-dashoffset: 0;
      }
    }

    @keyframes toastProgress {
      from {
        transform: scaleX(1);
      }

      to {
        transform: scaleX(0);
      }
    }

    .confirm-modal {
      background: #fff;
      width: 90%;
      max-width: 400px;
      padding: 32px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      text-align: center;
      transform: translateY(20px);
      animation: slideUp 0.3s forwards;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
      }
    }

    .confirm-modal-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .confirm-modal h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      margin-bottom: 12px;
    }

    .confirm-modal p {
      color: #555;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .confirm-actions {
      display: flex;
      gap: 6px;
      justify-content: center;
    }

    .btn-cancel,
    .btn-proceed {
      padding: 12px 24px;
      border-radius: 30px;
      font-size: 14px;
      cursor: pointer;
      border: none;
      font-weight: 500;
      flex: 1;
    }

    .btn-cancel {
      background: #eee;
      color: #333;
    }

    .btn-cancel:hover {
      background: #e0e0e0;
    }

    .btn-proceed {
      background: #000;
      color: #fff;
    }

    .btn-proceed:hover {
      background: #222;
    }

    /* ================= GLOBAL FOOTER ================= */
    .site-footer {
      background: #121826;
      /* Deep solid blue matching screenshot */
      color: #e8e6f0;
      font-family: 'Inter', sans-serif;
      margin-top: auto;
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      padding: 60px 40px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-col h4 {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.8px;
      margin-bottom: 24px;
      color: #fff;
      display: inline-block;
    }

    /* Social Icons */
    .social-links {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      color: #c0c8e8;
      transition: all 0.3s ease;
      background: transparent;
    }

    .social-icon:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: #fff;
      color: #fff;
      transform: translateY(-3px);
    }

    /* Contact Info */
    .contact-info {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .contact-icon {
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.03);
    }

    .contact-text {
      font-size: 13px;
      line-height: 1.6;
      color: #a8b0cc;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    /* Footer Links */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 14px;
    }

    /* Grey dot bullet points */
    .footer-links li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 4px;
      height: 4px;
      background: #66728a;
      border-radius: 50%;
    }

    .footer-links a {
      color: #9aa0bc;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.25s ease, padding-left 0.25s ease;
    }

    .footer-links a:hover {
      color: #fff;
    }

    /* ---- Divider line above footer-bottom ---- */
    .site-footer .footer-grid {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Bottom Copyright Bar */
    .footer-bottom {
      background: #1c2436;
      /* Distinct gray-blue segment matching screenshot */
      padding: 20px 40px;
      color: #7a80a0;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .copyright {
      font-size: 12px;
      line-height: 1.6;
      color: #7a80a0;
    }

    .scroll-top {
      width: 36px;
      height: 36px;
      background: #7681a3;
      color: #121826;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .scroll-top:hover {
      background: #8492c3;
    }

    /* ================= FOOTER RESPONSIVE ================= */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 24px;
      }
    }

    @media (max-width: 600px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-bottom {
        padding: 16px 24px;
      }
    }

    /* ================= MOBILE DRAWER FIXES (max-width: 768px) ================= */
    @media (max-width: 1024px) {

      /* Full-width drawer ? no leaked overflow on small screens */
      .cart-drawer,
      .profile-drawer {
        width: 85vw;
        max-width: 340px;
        border-radius: 28px 0 0 28px;
        border-radius: 0;
        height: 100dvh;
        /* dynamic viewport height ? accounts for browser chrome */
      }

      /* Tighter header */
      .cart-header {
        padding: 18px 20px 14px;
      }

      .cart-header h3 {
        font-size: 20px;
      }

      /* Scrollable items area ? shrinks to give room for footer */
      .cart-items {
        padding: 16px 20px;
        gap: 16px;
        flex: 1;
        overflow-y: auto;
        /* Always show scrollbar track so user knows it scrolls */
        -webkit-overflow-scrolling: touch;
      }

      /* Sticky footer ? always visible at bottom */
      .cart-footer {
        padding: 16px 20px 24px;
        /* Safe area for phones with home bar */
        padding-bottom: max(20px, env(safe-area-inset-bottom, 20px));
        border-radius: 0;
        flex-shrink: 0;
        /* never shrink ? always stays visible */
      }

      .cart-subtotal {
        margin-bottom: 14px;
        font-size: 15px;
      }

      .cart-subtotal strong {
        font-size: 18px;
      }

      .checkout-btn {
        padding: 14px;
        font-size: 14px;
      }

      /* Cart item ? slightly compact */
      .cart-item {
        grid-template-columns: 68px 1fr;
        gap: 6px;
      }

      .cart-item img {
        width: 68px;
        height: 85px;
        border-radius: 10px;
      }

      /* Profile drawer items */
      .profile-links {
        padding: 16px 20px !important;
      }

      .profile-header {
        padding: 18px 20px 14px !important;
      }
    }

    /* ================= LOGIN MODAL � Premium Dark Redesign ================= */

    .lm-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(5px);
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.4s ease, backdrop-filter 0.4s ease, visibility 0s linear 0.4s;
      /* Origin variables set by JS */
      --origin-x: 50vw;
      --origin-y: 50vh;
    }

    .lm-backdrop.active {
      opacity: 1;
      visibility: visible;
      backdrop-filter: blur(12px);
      pointer-events: auto;
      transition: opacity 0.4s ease, backdrop-filter 0.4s ease, visibility 0s linear 0s;
    }

    .lm-panel-glass {
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .lm-backdrop.active .lm-panel-glass {
      opacity: 1;
      transform: translateY(0) scale(1);
      transition-delay: 0.05s;
    }

    /* Close button */
    .lm-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 10;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .lm-close:hover {
      background: rgba(217, 83, 79, 0.2);
      border-color: rgba(217, 83, 79, 0.4);
      color: #ff6b6b;
      transform: rotate(90deg);
    }

    /* Brand header */
    .lm-brand {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 24px 24px 0;
      flex-shrink: 0;
    }

    .lm-brand-logo {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, #8492c3, #8ebcb7);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      font-family: 'Playfair Display', serif;
      box-shadow: 0 4px 16px rgba(132, 146, 195, 0.4);
    }

    .lm-brand-name {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      font-family: 'Playfair Display', serif;
    }

    .lm-logo-img {
      height: 45px;
      width: auto;
      object-fit: contain;
      transform: scale(3.5);
      transform-origin: center;
      margin-bottom: 20px;
    }

    .lm-brand-tag {
      font-size: 10px;
      color: #8ebcb7;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 2px;
    }

    /* Carousel wrapper */
    .lm-carousel {
      display: flex;
      width: 500%;
      flex: 1;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Individual view */
    .lm-view {
      width: 20%;
      flex-shrink: 0;
      overflow-y: auto;
      scrollbar-width: none;
    }

    .lm-view::-webkit-scrollbar {
      display: none;
    }

    .lm-view-inner {
      padding: 24px 28px;
      display: flex;
      flex-direction: column;
    }

    /* Titles */
    .lm-title {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }

    .lm-subtitle {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      margin-bottom: 24px;
    }

    /* Icon circle (for confirmation views) */
    .lm-icon-circle {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: rgba(132, 146, 195, 0.1);
      border: 1px solid rgba(132, 146, 195, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .error-shake {
      animation: shake 0.4s ease-in-out;
    }

    /* ================= STORE SWITCH TRANSITION ================= */
    .store-transition-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: #121826;
      z-index: 99999;
      pointer-events: none;
      transform: translateY(100%);
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .store-transition-overlay.active {
      transform: translateY(0);
    }

    .store-transition-overlay .transition-logo {
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      letter-spacing: 4px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease 0.3s;
    }

    .store-transition-overlay.active .transition-logo {
      opacity: 1;
      transform: translateY(0);
    }

    .lm-icon-pulse {
      animation: lmPulse 2.5s ease-in-out infinite;
    }

    @keyframes lmPulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(132, 146, 195, 0.3);
      }

      50% {
        box-shadow: 0 0 0 10px rgba(132, 146, 195, 0);
      }
    }

    /* Form */
    .lm-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .lm-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .lm-label {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .lm-input {
      width: 100%;
      padding: 13px 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(132, 146, 195, 0.2);
      border-radius: 12px;
      color: #fff;
      font-size: 14px;
      outline: none;
      box-sizing: border-box;
      transition: border-color 0.2s, background 0.2s;
      font-family: inherit;
    }

    .lm-input::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .lm-input:focus {
      border-color: rgba(132, 146, 195, 0.6);
      background: rgba(255, 255, 255, 0.09);
    }

    /* Password toggle */
    .lm-eye-btn {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.35);
      cursor: pointer;
      display: flex;
      align-items: center;
      padding: 4px;
      transition: color 0.2s;
    }

    .lm-eye-btn:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    /* Links row */
    .lm-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .lm-link-primary {
      font-size: 13px;
      font-weight: 600;
      color: #8492c3;
      text-decoration: none;
      transition: color 0.2s;
    }

    .lm-link-primary:hover {
      color: #a8b2d8;
    }

    .lm-link-muted {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
      text-decoration: none;
      transition: color 0.2s;
    }

    .lm-link-muted:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .lm-back-row {
      text-align: center;
      margin-top: 4px;
    }

    /* Primary action button */
    .lm-btn {
      width: 100%;
      padding: 15px;
      background: linear-gradient(135deg, #8492c3, #6e7eb0);
      border: none;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      border-radius: 40px;
      transition: all 0.3s ease;
      box-shadow: 0 6px 20px rgba(132, 146, 195, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
    }

    .lm-btn:hover {
      background: linear-gradient(135deg, #9aa0cf, #7c8dbf);
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(132, 146, 195, 0.4);
    }

    .lm-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    /* Spinner */
    .lm-spinner {
      width: 18px;
      height: 18px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: lmSpin 0.7s linear infinite;
    }

    @keyframes lmSpin {
      to {
        transform: rotate(360deg);
      }
    }

    /* OR divider */
    .lm-divider {
      position: relative;
      text-align: center;
      margin: 4px 0;
    }

    .lm-divider::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(132, 146, 195, 0.15);
    }

    .lm-divider span {
      position: relative;
      background: #16213e;
      padding: 0 12px;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.35);
      font-weight: 500;
    }

    /* Google button */
    .lm-btn-google {
      width: 100%;
      padding: 13px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      border-radius: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.25s ease;
      font-family: inherit;
    }

    .lm-btn-google:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-1px);
    }

    /* Error message */
    .lm-error {
      background: rgba(217, 83, 79, 0.12);
      border: 1px solid rgba(217, 83, 79, 0.3);
      color: #ff8080;
      padding: 10px 14px;
      border-radius: 10px;
      font-size: 13px;
      line-height: 1.5;
    }

    /* Trust badges */
    .lm-trust {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      padding: 12px 24px 20px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.2);
      border-top: 1px solid rgba(132, 146, 195, 0.08);
      flex-shrink: 0;
    }

    /* On larger screens � centered floating card */
    @media (min-width: 600px) {
      .lm-backdrop {
        align-items: center;
      }

      .lm-panel {
        border-radius: 24px;
        max-height: 85dvh;
        transform: scale(0.92) translateY(20px);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
      }

      .lm-backdrop.active .lm-panel {
        transform: scale(1) translateY(0);
        opacity: 1;
      }
    }

    /* ================= ORDER DETAILS MODAL ================= */
    .order-detail-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 3000;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .order-detail-modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .order-detail-modal {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -48%) scale(0.96);
      width: 90%;
      max-width: 600px;
      max-height: 85vh;
      background: #fff;
      z-index: 3001;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      display: flex;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      overflow: hidden;
    }

    .order-detail-modal.active {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(1);
    }

    .modal-header {
      padding: 24px 30px;
      border-bottom: 1px solid #eaeaea;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fafafa;
    }

    .modal-header h3 {
      margin: 0;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      color: #111;
    }

    .close-modal {
      background: transparent;
      border: none;
      cursor: pointer;
      color: #666;
      padding: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s, transform 0.2s;
    }

    .close-modal:hover {
      color: #111;
      transform: rotate(90deg);
    }

    .modal-body {
      flex: 1;
      overflow-y: auto;
      padding: 30px;
    }

    /* Tracking Bar */
    .order-tracker {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 40px;
      padding: 0 10px;
    }

    .order-tracker::before {
      content: '';
      position: absolute;
      top: 14px;
      left: 20px;
      right: 20px;
      height: 2px;
      background: #eaeaea;
      z-index: 1;
    }

    .tracker-progress-line {
      position: absolute;
      top: 14px;
      left: 20px;
      height: 2px;
      background: #2b7cd4;
      /* Blue progress */
      z-index: 2;
      transition: width 0.4s ease;
    }

    .tracker-step {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 60px;
    }

    .step-circle {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #fff;
      border: 2px solid #eaeaea;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 12px;
      color: #aaa;
      transition: all 0.3s;
    }

    .step-label {
      font-size: 11px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-align: center;
      line-height: 1.2;
    }

    /* Completed Step */
    .tracker-step.completed .step-circle {
      background: #2b7cd4;
      border-color: #2b7cd4;
      color: #fff;
    }

    .tracker-step.completed .step-label {
      color: #111;
      font-weight: 600;
    }

    /* Active/Current Step */
    .tracker-step.active .step-circle {
      border-color: #2b7cd4;
      color: #2b7cd4;
      box-shadow: 0 0 0 4px rgba(43, 124, 212, 0.15);
    }

    .tracker-step.active .step-label {
      color: #2b7cd4;
      font-weight: 700;
    }

    /* Shiprocket Tracking Info Box */
    .tracking-info-box {
      background: #f9f9f9;
      border: 1px solid #eaeaea;
      border-radius: 8px;
      padding: 15px;
      margin-top: 10px;
    }

    .tracking-detail {
      font-size: 13px;
      color: #333;
      margin-bottom: 6px;
    }

    .tracking-label {
      color: #777;
      display: inline-block;
      width: 90px;
    }

    .track-order-btn:hover {
      background: #333 !important;
    }

    /* Modal Detail Sections */
    .detail-section {
      margin-bottom: 30px;
    }

    .detail-section h4 {
      font-size: 13px;
      text-transform: uppercase;
      color: #666;
      letter-spacing: 1px;
      margin-bottom: 15px;
      padding-bottom: 8px;
      border-bottom: 1px solid #eaeaea;
    }

    .info-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .info-col {
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex: 1;
      min-width: 100px;
    }

    .info-label {
      font-size: 12px;
      color: #888;
      text-transform: uppercase;
    }

    .info-value {
      font-size: 14px;
      font-weight: 600;
      color: #111;
    }

    /* Dynamic Status Badge */
    .modal-status-badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .badge-Processing {
      background: #fff3cd;
      color: #856404;
    }

    .badge-In-Transit {
      background: #d1ecf1;
      color: #0c5460;
    }

    .badge-Out-For-Delivery {
      background: #e2d9f3;
      color: #5a32a3;
    }

    .badge-Delivered {
      background: #d4edda;
      color: #155724;
    }

    .badge-Cancelled,
    .badge-Return-Rejected,
    .badge-Exchange-Rejected {
      background: #f8dbdf;
      color: #721c24;
    }

    /* Modal Products */
    .modal-products {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .modal-product-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 12px;
      background: #fafafa;
      border: 1px solid #eaeaea;
      border-radius: 12px;
    }

    .modal-product-item img {
      width: 54px;
      height: 64px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid #eaeaea;
    }

    .modal-product-info {
      flex: 1;
    }

    .modal-product-title {
      font-size: 14px;
      font-weight: 600;
      color: #111;
      margin-bottom: 2px;
    }

    .modal-product-meta {
      font-size: 12px;
      color: #666;
    }

    .modal-product-price {
      font-weight: 700;
      font-size: 15px;
      color: #111;
    }

    /* Shipping & Summary Layout */
    .shipping-summary-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .shipping-box {
      font-size: 13px;
      line-height: 1.6;
      color: #444;
      background: #fafafa;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid #eaeaea;
    }

    .shipping-box strong {
      display: block;
      color: #111;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .summary-box {
      background: #fafafa;
      padding: 15px;
      border-radius: 12px;
      border: 1px solid #eaeaea;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .sum-row {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      color: #555;
    }

    .sum-row.total {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      padding-top: 8px;
      border-top: 1px solid #eaeaea;
      margin-top: 5px;
    }

    @media (max-width: 600px) {
      .shipping-summary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* ================= MY ORDERS SIDEBAR MINI CARDS ================= */
    .order-mini-card {
      background: #fff;
      border: 1px solid rgba(132, 146, 195, 0.2);
      border-radius: 16px;
      padding: 16px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .order-mini-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
      border-color: rgba(132, 146, 195, 0.4);
    }

    .orc-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .orc-status-badge {
      padding: 4px 8px;
      border-radius: 6px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .orc-id {
      font-family: monospace;
      font-size: 11px;
      color: #888;
      margin-top: 4px;
    }

    .orc-date {
      font-size: 12px;
      font-weight: 600;
      color: #111;
    }

    .orc-body {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(132, 146, 195, 0.04);
      padding: 10px;
      border-radius: 10px;
    }

    .orc-img {
      width: 40px;
      height: 48px;
      border-radius: 6px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .orc-info {
      flex: 1;
    }

    .orc-title {
      font-size: 13px;
      font-weight: 600;
      color: #333;
      margin: 0 0 2px 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .orc-items-count {
      font-size: 11px;
      color: #777;
    }

    .orc-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px dashed rgba(132, 146, 195, 0.2);
      padding-top: 10px;
    }

    .orc-total {
      font-size: 16px;
      font-weight: 700;
      color: #4a5a7d;
    }

    .orc-view-btn {
      font-size: 11px;
      font-weight: 600;
      color: #2b7cd4;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Empty State */
    .orc-empty {
      text-align: center;
      padding: 40px 20px;
    }

    .orc-empty-icon {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .orc-empty h4 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      color: #111;
      margin: 0 0 10px 0;
    }

    .orc-empty p {
      font-size: 14px;
      color: #666;
      margin: 0 0 20px 0;
      line-height: 1.5;
    }

    .orc-empty-btn {
      background: #111;
      color: #fff;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .orc-empty-btn:hover {
      background: #333;
    }

    /* ================= GLOBAL SEARCH DROPDOWN ================= */
    .search-dropdown-wrapper {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-10px);
      width: 90%;
      max-width: 600px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(132, 146, 195, 0.2);
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      z-index: 2500;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .search-dropdown-wrapper.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(10px);
    }

    .search-input-container {
      position: relative;
      padding: 15px 20px;
      border-bottom: 1px solid rgba(132, 146, 195, 0.15);
      display: flex;
      align-items: center;
      background: rgba(250, 250, 250, 0.5);
    }

    .search-icon-inside {
      position: absolute;
      left: 30px;
      color: #8492c3;
      pointer-events: none;
    }

    .search-input-container input {
      width: 100%;
      padding: 12px 40px 12px 45px;
      border: 1px solid rgba(132, 146, 195, 0.2);
      border-radius: 12px;
      font-size: 15px;
      outline: none;
      background: #fff;
      transition: border-color 0.2s;
      color: #333;
    }

    .search-input-container input:focus {
      border-color: rgba(132, 146, 195, 0.6);
      box-shadow: 0 0 0 3px rgba(132, 146, 195, 0.1);
    }

    .close-search-input {
      position: absolute;
      right: 30px;
      background: transparent;
      border: none;
      color: #aaa;
      font-size: 16px;
      cursor: pointer;
      padding: 5px;
      transition: color 0.2s;
    }

    .close-search-input:hover {
      color: #333;
    }

    .search-results-container {
      max-height: 400px;
      overflow-y: auto;
      padding: 10px;
    }

    /* Individual Search Result Row */
    .search-result-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 12px 15px;
      cursor: pointer;
      border-radius: 12px;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
      color: inherit;
    }

    .search-result-item:hover {
      background: rgba(132, 146, 195, 0.08);
    }

    .search-result-img {
      width: 50px;
      height: 60px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid rgba(132, 146, 195, 0.2);
    }

    .search-result-info {
      flex: 1;
    }

    .search-result-title {
      font-size: 14px;
      font-weight: 600;
      color: #222;
      margin-bottom: 3px;
    }

    .search-result-cat {
      font-size: 11px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .search-result-price {
      font-weight: 700;
      color: #4a5a7d;
      font-size: 14px;
    }

    /* Empty / Loading States */
    .search-state-msg {
      padding: 40px 20px;
      text-align: center;
      color: #888;
      font-size: 14px;
    }

    .search-highlight {
      background-color: rgba(163, 196, 255, 0.3);
      font-weight: 700;
      color: #2b7cd4;
    }

    .search-spinner {
      width: 30px;
      height: 30px;
      border: 3px solid rgba(132, 146, 195, 0.2);
      border-top-color: #4a5a7d;
      border-radius: 50%;
      animation: search-spin 1s linear infinite;
      margin: 0 auto 15px;
    }

    @keyframes search-spin {
      to {
        transform: rotate(360deg);
      }
    }

    @media (max-width: 1024px) {
      .search-dropdown-wrapper {
        width: 95%;
      }
    }