      /* Dropdown Menu Styles */
      .nav-item-dropdown {
        position: relative;
      }

      .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        min-width: 180px;
        border-radius: 12px;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        z-index: 100;
        padding: 8px 0;
        border: 1px solid rgba(108, 50, 64, 0.1);
      }

      .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .dropdown-menu a {
        display: block;
        padding: 10px 20px;
        color: var(--text);
        font-size: 14px;
        transition: var(--transition);
      }

      .dropdown-menu a:hover {
        background: var(--bg);
        color: var(--heading);
      }

      .dropdown-menu a::after {
        display: none;
      }

      .dropdown-icon {
        margin-left: 6px;
        font-size: 12px;
      }


      /* Header */
      .topbar {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(246, 240, 242, 0.86);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(155, 108, 121, 0.08);
      }

      .announcement-bar {
        background: #e0d3d6;
        color: #4a2331;
        text-align: center;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      .navbar-top {
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
      }

      .nav-left,
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 3px;
        flex: 1;
        /* Balances the layout to center the brand */
      }

      .nav-actions {
        justify-content: flex-end;
      }

      .region-selector {
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
        display: flex;
        align-items: center;
        cursor: pointer;
      }

      .currency-icon {
        margin-left: 6px;
        border: 1px solid var(--text);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: grid;
        place-items: center;
        font-size: 10px;
      }

      .brand {
        display: flex;
        justify-content: center;
        flex: 1;
      }

      .brand img {
        height: 50px;
        width: auto;
        object-fit: contain;
        display: block;
      }

      .navbar-bottom {
        display: flex;
        justify-content: center;
        padding-bottom: 16px;
      }

      .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
        font-size: 14px;
        color: var(--text);
      }

      .nav-links a {
        position: relative;

      }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--wine);
        transition: var(--transition);
      }

      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }

      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .icon-btn {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(108, 50, 64, 0.12);
        background: var(--white);
        color: var(--heading);
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: var(--transition);
        position: relative;
        font-size: 18px;
      }

      .icon-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
      }

      .search-mobile-btn {
        display: none !important;
      }

      .badge {
        position: absolute;
        top: -3px;
        right: -3px;
        min-width: 18px;
        height: 18px;
        border-radius: 999px;
        background: var(--wine);
        color: var(--white);
        font-size: 11px;
        display: grid;
        place-items: center;
        padding: 0 5px;
      }

      .menu-toggle,
      .close-menu-btn {
        display: none;
      }

      /* Footer */
      footer {
        padding: 42px 0 60px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
      }

      .footer-col .brand {
        justify-content: flex-start;
      }

      .footer-col:first-child {
        text-align: left;
      }

      .footer-col:first-child p {
        margin: 0;
      }

      .footer-col h4 {
        color: var(--heading);
        margin-bottom: 14px;
        font-weight: 400 !important;
      }

      .footer-col ul {
        display: grid;
        gap: 10px;
        color: var(--text-soft);
        font-size: 14px;
      }

      .socials {
        display: flex;
        gap: 10px;
        margin-top: 16px;
        justify-content: flex-start;
      }

      .socials a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--white);
        color: var(--heading);
        display: grid;
        place-items: center;
        box-shadow: var(--shadow);
        font-size: 16px;
      }

      .foot-bottom {
        border-top: 1px solid rgba(108, 50, 64, 0.1);
        padding-top: 18px;
        color: var(--text-soft);
        font-size: 14px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
      }


      /* Drawers & modal */
      .drawer,
      .overlay,
      .search-modal {
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
      }

      .overlay {
        position: fixed;
        inset: 0;
        background: rgba(35, 15, 21, 0.42);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 120;
      }

      .overlay.show {
        opacity: 1;
        pointer-events: auto;
      }

      .drawer {
        position: fixed;
        top: 0;
        right: 0;
        width: min(420px, 100%);
        height: 100vh;
        background: #f8f5f5;
        /* Premium Light pinkish grey */
        z-index: 130;
        transform: translateX(100%);
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
      }

      .drawer.show {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
      }

      .drawer-header {
        padding: 24px;
        border-bottom: 1px solid rgba(108, 50, 64, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
      }

      .drawer-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: #4a3b42;
        font-weight: 500;
        margin: 0;
      }

      .footer-col .brand img {
        height: 70px;
      }

      .drawer-footer {
        padding: 24px;
        border-bottom: none;
        border-top: 1px solid rgba(108, 50, 64, 0.08);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-top: auto;
        background: #f8f5f5;
        z-index: 2;
      }

      .drawer-body {
        padding: 24px;
        overflow-y: auto;
        display: grid;
        gap: 16px;
        align-content: start;
        flex-grow: 1;
        /* Hide scrollbar for clean look */
        -ms-overflow-style: none;
        scrollbar-width: none;
      }

      .drawer-body::-webkit-scrollbar {
        display: none;
      }

      .drawer-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 16px;
        background: var(--white);
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        align-items: start;
      }

      .drawer-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 8px;
        background: #fbfbfb;
      }

      .drawer-item h5 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: #4a3b42;
        margin-bottom: 4px;
        font-weight: 500;
        margin-top: 0;
      }

      .drawer-item p {
        font-size: 12px;
        color: #888;
        margin-bottom: 12px;
        margin-top: 0;
      }

      .drawer-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
      }

      .cart-qty {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .qty-btn,
      .close-btn {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: #f3ebec;
        color: #4a3b42;
        cursor: pointer;
        font-size: 16px;
        display: grid;
        place-items: center;
      }

      .close-btn {
        background: #f1eaeb;
        font-size: 14px;
      }

      .drawer-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Playfair Display', serif;
        font-variant-numeric: lining-nums;
        font-weight: 600;
        color: #4a3b42;
        margin-bottom: 16px;
        font-size: 1.1rem;
      }

      .remove-btn-pill {
        background: #ffffff;
        border: 1px solid rgba(108, 50, 64, 0.1);
        color: #4a3b42;
        border-radius: 12px;
        padding: 6px 16px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
        margin-top: 8px;
      }

      .remove-btn-pill:hover {
        background: var(--wine);
        color: #fff;
      }

      .btn-wishlist-add {
        background: var(--wine) !important;
        color: #fff !important;
        border: 1px solid var(--wine) !important;
        transition: 0.3s;
      }

      .btn-wishlist-add:hover {
        background: transparent !important;
        color: var(--wine) !important;
      }

      .drawer-footer .btn:not(.btn-outline) {
        background: #ffffff;
        color: #4a3b42;
        border: 1px solid rgba(108, 50, 64, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        font-weight: 600;
        border-radius: 8px;
      }

      .drawer-footer .btn:not(.btn-outline):hover {
        background: #f8f5f5;
      }

      .empty-state {
        text-align: center;
        padding: 24px;
        color: var(--text-soft);
        background: var(--white);
        border-radius: 20px;

      }

      .search-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.96);
        width: min(640px, calc(100% - 32px));
        background: var(--bg-soft);
        z-index: 140;
        border-radius: 24px;
        padding: 24px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
      }

      .search-modal.show {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -50%) scale(1);
      }

      .search-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
      }

      #searchInput {
        width: 100%;
        padding: 16px 24px;
        border-radius: 99px;
        border: 1px solid var(--rose);
        background: var(--white);
        font-family: inherit;
        font-size: 16px;
        color: var(--heading);
        outline: none;
        box-shadow: 0 4px 15px rgba(108, 50, 64, 0.05);
        transition: 0.3s;
      }

      #searchInput:focus {
        border-color: var(--wine);
        box-shadow: 0 4px 20px rgba(108, 50, 64, 0.1);
      }

      .search-results {
        display: grid;
        gap: 12px;
        margin-top: 16px;
        max-height: 340px;
        overflow: auto;
      }

      .search-result {
        display: grid;
        grid-template-columns: 70px 1fr auto;
        gap: 14px;
        align-items: center;
        background: var(--white);
        padding: 10px;
        border-radius: 16px;
        box-shadow: var(--shadow);
      }

      .search-result img {
        height: 74px;
        object-fit: cover;
        border-radius: 12px;
      }

      .toast-wrap {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 200;
        display: grid;
        gap: 10px;
      }

      .toast {
        background: var(--white);
        color: var(--heading);
        padding: 14px 16px;
        border-radius: 16px;
        box-shadow: var(--shadow);
        border-left: 4px solid var(--wine);
        min-width: 260px;
        animation: slideIn 0.35s ease;
      }

      @keyframes slideIn {
        from {
          transform: translateY(12px);
          opacity: 0;
        }

        to {
          transform: translateY(0);
          opacity: 1;
        }
      }

      /* --- MOBILE RESPONSIVENESS --- */
      @media (max-width: 768px) {
        .brand img {
          height: 38px;
        }

        .nav-links {
          position: fixed;
          top: 0;
          left: -100%;
          width: min(280px, 75vw);
          height: 100vh;
          background: #f8f5f5;
          flex-direction: column;
          align-items: flex-start;
          padding: 70px 24px 40px;
          transition: left 0.35s ease;
          z-index: 130;
          box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
          border-top: none;
          overflow-y: auto;
        }

        .nav-links.active {
          left: 0;
        }

        .close-menu-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          top: 20px;
          right: 20px;
          background: transparent;
          border: none;
          font-size: 28px;
          color: var(--heading);
          cursor: pointer;
          width: 40px;
          height: 40px;
          border-radius: 50%;
        }

        .close-menu-btn:hover {
          background: rgba(108, 50, 64, 0.05);
        }

        .nav-links a {
          font-size: 18px;
          width: 100%;

          border-bottom: 1px solid rgba(111, 78, 55, 0.05);
        }

        .nav-item-dropdown .dropdown-menu {
          position: static;
          opacity: 1;
          visibility: visible;
          transform: none;
          box-shadow: none;
          background: transparent;
          border: none;
          margin-top: 5px;
          padding-left: 20px;
          display: none;
        }

        .nav-item-dropdown.active .dropdown-menu {
          display: block;
        }

        .footer-grid {
          grid-template-columns: 1fr;
          text-align: left;
          gap: 0;
        }

        .footer-col {
          border-bottom: 1px solid rgba(108, 50, 64, 0.1);
        }

        .footer-col:first-child {
          text-align: center;
          margin-bottom: 24px;
          border-bottom: none;
        }

        .footer-col .brand {
          justify-content: center;
        }

        .footer-col:first-child p {
          margin: 0 auto;
        }

        .socials {
          justify-content: center;
        }

        .footer-col h4 {
          display: flex;
          justify-content: space-between;
          align-items: center;
          cursor: pointer;
          margin-bottom: 0;
          padding: 16px 0;
          border-bottom: none;
        }

        .footer-col h4 .toggle-icon {
          display: block;
          transition: transform 0.3s ease;
          font-size: 14px;
          color: var(--wine);
        }

        .footer-col.active h4 .toggle-icon {
          transform: rotate(180deg);
        }

        .footer-col ul {
          max-height: 0;
          overflow: hidden;
          transition: all 0.35s ease;
          opacity: 0;
          padding-top: 0;
          padding-bottom: 0;
          margin: 0;
        }

        .footer-col.active ul {
          max-height: 400px;
          opacity: 1;
          padding-top: 4px;
          padding-bottom: 16px;
        }

        .socials {
          justify-content: center;
        }

        .menu-toggle {
          display: block !important;
          background: none;
          border: none;
          font-size: 24px;
          color: var(--heading);
          cursor: pointer;
        }

        .desktop-only {
          display: none !important;
        }

        .search-mobile-btn {
          display: grid !important;
        }

        .navbar-bottom {
          padding: 0;
          height: 0;
        }

        .foot-bottom {
          flex-direction: column;
          align-items: center;
          justify-content: center;
          text-align: center;
          gap: 8px;
          border-top: none;
        }

        body.nav-open .announcement-bar {
          display: none;
        }

        body.nav-open .topbar {
          z-index: 130;
        }
      }

      .menu-toggle {
        display: none;
      }

      @media (min-width: 769px) {
        .footer-col h4 .toggle-icon {
          display: none;
        }
      }

      /* Hidden on desktop */
      .drawer-footer .btn-outline {
        background: transparent !important;
        color: #4a3b42 !important;
        border: 1px solid rgba(108, 50, 64, 0.2) !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
      }

      .drawer-footer .btn-outline:hover {
        background: rgba(108, 50, 64, 0.05) !important;
      }

      .mini-action.in-wishlist {
        color: var(--wine);
      }