    :root {
      --green: #22c55e;
      --green-dark: #16a34a;
      --green-light: #dcfce7;
      --text-primary: #111827;
      --text-muted: #6b7280;
      --border: #e5e7eb;
      --font: "Plus Jakarta Sans", sans-serif;
      --nav-height: 64px;
    }

    html {
  overflow-x: hidden;
}


    @font-face {
      font-family: "Poppins-Semibold";
      src: url("../fonts/Poppins/Poppins-SemiBold.ttf");
    }

    @font-face {
      font-family: "Poppins-Bold";
      src: url("../fonts/Poppins/Poppins-Bold.ttf");
    }

    @font-face {
      font-family: "Poppins-Medium";
      src: url("../fonts/Poppins/Poppins-Medium.ttf");
    }

    @font-face {
      font-family: "Poppins-Regular";
      src: url("../fonts/Poppins/Poppins-Regular.ttf");
    }

    body {
      font-family: var(--font);
      background: #f9fafb;
      color: var(--text-primary);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .wishlist-page {
      flex: 1;
    }

    /* ── Navbar ── */
    .pmt-navbar {
      height: var(--nav-height);
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .pmt-navbar .container {
      display: flex;
      align-items: center;
      gap: 0;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .pmt-nav-icons {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .pmt-hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 22px;
      color: var(--text-muted);
      padding: 4px 6px;
      border-radius: 6px;
      line-height: 1;
    }

    .pmt-hamburger:hover {
      background: var(--green-light);
    }

    /* ── Mobile nav drawer ── */
    .pmt-mobile-nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1199;
    }

    .pmt-mobile-nav-overlay.open {
      display: block;
    }

    .pmt-mobile-nav {
      position: fixed;
      bottom: -100%;
      left: 0;
      right: 0;
      background: #fff;
      border-radius: 20px 20px 0 0;
      z-index: 1200;
      padding: 0 0 24px;
      transition: bottom 0.3s ease;
      box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    }

    .pmt-mobile-nav.open {
      bottom: 0;
    }

    .pmt-mobile-nav-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px 12px;
      border-bottom: 1px solid var(--border);
    }

    .pmt-mobile-nav-title {
      font-weight: 600;
      font-size: 16px;
      color: var(--text-primary);
    }

    .pmt-mobile-nav-close {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 18px;
      color: var(--text-muted);
      padding: 4px;
    }

    .pmt-mobile-nav-links {
      list-style: none;
      margin: 0;
      padding: 8px 0;
    }

    .pmt-mobile-nav-links li a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      font-size: 15px;
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
    }

    .pmt-mobile-nav-links li a:active {
      background: var(--green-light);
    }

    .pmt-mobile-nav-links li a i {
      font-size: 18px;
      color: var(--green);
    }

    .pmt-nav-whatsapp {
      display: flex;
    }

    .pmt-logo {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      line-height: 0;
      padding: 0 4px;
      box-sizing: border-box;
    }

    .pmt-logo img {
      display: block;
      width: auto;
      height: auto;
      max-height: calc(var(--nav-height) - 16px);
      aspect-ratio: 221 / 114;
      object-fit: contain;
      object-position: center;
      flex-shrink: 0;
    }

    .pmt-logo:hover {
      opacity: 0.9;
    }

    .pmt-nav-links {
      list-style: none;
      margin: 0;
      padding: 0;
      flex: 1;
      align-self: stretch;
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 1.85rem;
    }

    .pmt-nav-links li {
      display: flex;
    }

    .pmt-nav-links a,
    .pmt-nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 2px solid transparent;
      transition: background .15s, color .15s, border-color .15s;
    }

    .pmt-nav-links a:hover,
    .pmt-nav-link:hover {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .pmt-nav-links a.mega-active,
    .pmt-nav-link.mega-active {
      background: var(--green-light);
      color: var(--green-dark);
      border-bottom-color: var(--green);
      border-radius: 8px 8px 0 0;
    }

    .pmt-icon-btn {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 18px;
      transition: background .15s, color .15s;
      position: relative;
    }

    .pmt-icon-btn:hover {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .pmt-icon-btn.active-heart {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .badge-nav {
      position: absolute;
      top: 4px;
      right: 4px;
      width: 15px;
      height: 15px;
      background: #ef4444;
      border-radius: 50%;
      border: 2px solid #fff;
      font-size: 8px;
      font-weight: 700;
      color: #fff;
      display: none;
      align-items: center;
      justify-content: center;
    }

    /* ── Mega Menu ── */
    .mega-backdrop {
      position: fixed;
      inset: 0;
      z-index: 199;
      display: none;
    }

    .mega-backdrop.open {
      display: block;
    }

    .mega-menu {
      position: fixed;
      top: var(--nav-height);
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
      display: flex;
      height: 420px;
      z-index: 200;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition: opacity .2s ease, transform .2s ease;
    }

    .mega-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    .mega-sidebar {
      width: 220px;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
      overflow-y: auto;
      scrollbar-width: none;
      padding: 8px 0;
    }

    .mega-sidebar::-webkit-scrollbar {
      display: none;
    }

    .mega-sidebar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      cursor: pointer;
      border-left: 3px solid transparent;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-muted);
      transition: background .12s;
    }

    .mega-sidebar-item:hover {
      background: #f9fafb;
      color: var(--text-primary);
    }

    .mega-sidebar-item.active {
      background: #f0fdf4;
      color: var(--text-primary);
      border-left-color: var(--green);
      font-weight: 600;
    }

    .mega-sidebar-icon {
      /* width: 28px;
      height: 28px;
      background: #f3f4f6;
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4b5563;
      overflow: hidden; */
      display: none;
    }

    .mega-sidebar-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .mega-sidebar-item.active .mega-sidebar-icon {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .mega-content {
      flex: 1;
      overflow-y: auto;
      padding: 24px 28px;
      scrollbar-width: thin;
      scrollbar-color: var(--green) #f3f4f6;
    }

    .mega-section {
      margin-bottom: 32px;
    }

    .mega-section-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 16px;
    }

    .mega-products-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }

    .mega-product-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: transform .15s;
    }

    .mega-product-item:hover {
      transform: translateY(-2px);
    }

    .mega-product-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: #f3f4f6;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .mega-product-label {
      font-size: 11.5px;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.4;
      font-weight: 500;
    }

    /* ── Page ── */
    .wishlist-page {
      padding: 40px 0 64px;
    }

    .wishlist-title {
      font-size: 24px;
      font-family: "Poppins-Semibold";
      letter-spacing: -.4px;
      margin-bottom: 6px;
    }

    .wishlist-sub {
      font-size: 14px;
      font-family: "Poppins-Regular";
      color: #222222;
      margin-bottom: 32px;
    }

    /* ── Wishlist Item Card ── */
    .wl-item {
      background: #fff;
      border: 1px solid #DDDDDD;
      border-radius: 16px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 14px;
      position: relative;
      transition: box-shadow .2s;
    }

    .wl-item:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    }

    .wl-item-img {
      width: 180px;
      height: 140px;
      flex-shrink: 0;
      border-radius: 10px;
      background: #e5e7eb;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wl-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wl-item-body {
      flex: 1;
      min-width: 0;
    }

    .wl-item-label {
      font-size: 13px;
      color: #CAC5C5;
      font-family: "Poppins-Regular";
      margin-bottom: 2px;
    }

    .wl-item-name {
      font-size: 14px;
      font-family: "Poppins-Medium";
      color: #222222;
      margin-bottom: 0;
    }

    .wl-item-cols {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .wl-item-btns {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn-view-details {
      padding: 8px 20px;
      border-radius: 8px;
      border: 1.5px solid #DDDDDD;
      background: #fff;
      color: var(--text-primary);
      font-family: "Poppins-Semibold";
      font-size: 13.5px;
      cursor: pointer;
      transition: border-color .15s, background .15s;
    }

    .btn-view-details:hover {
      border-color: var(--green);
      color: var(--green-dark);
    }

    .btn-add-to-cart-wl {
      padding: 8px 22px;
      border-radius: 8px;
      border: none;
      background: linear-gradient(to right, #b0ff8c, #4df900);
      color: #222222;
      font-family: "Poppins-Semibold";
      font-size: 13.5px;
      cursor: pointer;
      transition: background .15s, transform .15s;
    }

    .btn-add-to-cart-wl:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
    }

    .btn-add-to-cart-wl.added {
      background: linear-gradient(to right, #b0ff8c, #4df900);
    }

    .wl-remove-btn {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 34px;
      background: linear-gradient(180deg, #EF4444 0%, #DC2626 100%);
      border: 1px solid #B91C1C;
      box-shadow: 0 4px 12px rgba(220, 38, 38, 0.24);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      color: #fff;
      transition: background .2s, transform .2s, box-shadow .2s, filter .2s;
      z-index: 2;
    }

    .wl-remove-btn i {
      font-size: 18px;
      line-height: 1;
      display: block;
    }

    .wl-remove-btn:hover {
      background: linear-gradient(180deg, #DC2626 0%, #B91C1C 100%);
      box-shadow: 0 8px 18px rgba(220, 38, 38, 0.28);
      transform: translateY(-1px);
      filter: saturate(1.05);
    }

    .wl-remove-btn:focus-visible {
      outline: 3px solid #FCA5A5;
      outline-offset: 2px;
    }

    /* ── Empty state ── */
    .wl-empty {
      text-align: center;
      padding: 80px 24px;
    }

    .wl-empty i {
      font-size: 64px;
      color: #d1d5db;
      margin-bottom: 16px;
      display: block;
    }

    .wl-empty h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-primary);
    }

    .wl-empty p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .btn-browse {
      padding: 12px 28px;
      border-radius: 10px;
      border: none;
      background: var(--green);
      color: #fff;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
    }

    .btn-browse:hover {
      background: var(--green-dark);
      color: #fff;
    }

    @media(max-width:768px) {
      .pmt-nav-links {
        display: none !important;
      }

      .pmt-footer {
        margin-top: 0px !important;
      }

      .pmt-hamburger {
        display: flex;
        align-items: center;
        flex-shrink: 0;
      }

      .pmt-navbar .container {
        padding: 0 12px !important;
        position: relative;
      }

      .pmt-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: auto;
      }

      .pmt-nav-icons {
        margin-left: auto;
        gap: 2px;
      }

      .pmt-nav-whatsapp {
        display: none !important;
      }

      .pmt-icon-btn {
        width: 34px;
        height: 34px;
        font-size: 17px;
      }

      .wishlist-page {
        padding: 20px 0 48px;
      }

      .wl-item {
        flex-direction: column;
        align-items: flex-start;
      }

      .wl-item-img {
        width: 100%;
        height: 160px;
      }

      .wl-item-cols {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* ═══════════════════════════════════════
       WISHLIST HEART — shows on card hover
    ═══════════════════════════════════════ */
    .wishlist-btn {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.95);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: #9ca3af;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      opacity: 0;
      transition: opacity 0.2s, color 0.2s, transform 0.15s;
      z-index: 20;
    }

    /* Make every card position:relative so the button can anchor */
    .premium-card,
    .result-card,
    .cat-card,
    .prod-card,
    .freq-card,
    .rec-card,
    .pm-card {
      position: relative !important;
    }

    /* Show on hover */
    .premium-card:hover .wishlist-btn,
    .result-card:hover .wishlist-btn,
    .cat-card:hover .wishlist-btn,
    .prod-card:hover .wishlist-btn,
    .freq-card:hover .wishlist-btn,
    .rec-card:hover .wishlist-btn,
    .pm-card:hover .wishlist-btn {
      opacity: 1;
    }

    /* Hover the heart itself */
    .wishlist-btn:hover {
      color: var(--green, #22c55e);
      transform: scale(1.15);
    }

    /* Active = in wishlist = green */
    .wishlist-btn.active {
      opacity: 1 !important;
      color: var(--green, #22c55e) !important;
    }

    .wishlist-btn.active i {
      color: var(--green, #22c55e) !important;
    }

    /* Mega menus full-width on mobile */
    .mega-menu {
      height: auto;
      max-height: 70vh;
      overflow-y: auto;
    }

    .mega-products-grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Inquiry modal full screen */
    .inquiry-overlay {
      padding: 0;
      align-items: flex-end;
    }

    .inquiry-modal {
      border-radius: 20px 20px 0 0;
      max-width: 100%;
      width: 100%;
    }

    /* Auth modal full screen */
    #authOverlay .auth-modal {
      flex-direction: column;
      max-width: 100%;
      width: 100%;
      min-height: auto;
      border-radius: 0;
    }

    #authOverlay .auth-left {
      flex: 0 0 auto;
      min-height: 120px;
    }
    }

    @media (max-width: 480px) {
      .mega-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }

    /* ════════════════════════════════════════════
       wishlist.html MOBILE
    ════════════════════════════════════════════ */
    @media (max-width: 768px) {
      .pmt-nav-links {
        display: none !important;
      }

      .wishlist-page {
        padding: 20px 0 48px;
      }

      /* Wishlist items — stack */
      .wl-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
      }

      .wl-item-img {
        width: 100% !important;
        height: 160px !important;
        border-radius: 10px;
      }

      .wl-item-cols {
        grid-template-columns: 1fr 1fr !important;
      }

      .wl-item-btns {
        flex-wrap: wrap;
        gap: 8px;
      }

      .btn-view-details,
      .btn-add-to-cart-wl {
        flex: 1;
        min-width: 120px;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .wl-item-cols {
        grid-template-columns: 1fr !important;
      }
    }


    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE — Mobile First (shared across all pages)
       320px → 480px → 768px → 1024px → 1400px+
    ═══════════════════════════════════════════════════════════ */

    /* ── Navbar ── */
    @media (max-width: 768px) {

      .pmt-navbar .container,
      .pmt-navbar .nav-inner {
        padding: 0 12px !important;
      }

      .pmt-nav-links {
        display: none !important;
      }

      .pmt-icon-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
      }

      .badge-cart,
      .badge-wishlist {
        width: 13px;
        height: 13px;
        font-size: 7px;
      }
    }

    /* ── Mega menus ── */
    @media (max-width: 768px) {
      .mega-menu {
        height: auto;
        max-height: 75vh;
        overflow-y: auto;
        flex-direction: column;
      }

      .mega-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        display: flex;
        overflow-x: auto;
        padding: 8px;
        gap: 4px;
      }

      .mega-sidebar-item {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 8px 12px;
      }

      .mega-content {
        padding: 16px;
      }

      .mega-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .mega-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }

    /* ── Inquiry modal ── */
    @media (max-width: 768px) {
      .inquiry-overlay {
        align-items: flex-end;
        padding: 0;
      }

      .inquiry-modal {
        border-radius: 20px 20px 0 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        max-height: 90vh;
        overflow-y: auto;
      }
    }

    /* ── Auth modal ── */
    @media (max-width: 768px) {
      #authOverlay .auth-modal {
        flex-direction: column;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
        min-height: auto !important;
      }

      #authOverlay .auth-left {
        flex: 0 0 auto;
        min-height: 100px;
        padding: 20px 24px 12px;
      }

      #authOverlay .auth-left-brand {
        font-size: 26px;
      }

      #authOverlay .auth-right {
        padding: 20px 20px 32px !important;
      }
    }

    /* ── wishlist.html specific ── */
    @media (max-width: 768px) {
      .pmt-nav-links {
        display: none !important;
      }

      .wishlist-page {
        padding: 20px 0 48px;
      }

      .wishlist-title {
        font-size: 20px;
      }

      /* Item cards stack */
      .wl-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 14px;
      }

      .wl-item-img {
        width: 100% !important;
        height: 160px !important;
        border-radius: 10px;
      }

      .wl-item-cols {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px;
      }

      .wl-item-btns {
        flex-wrap: wrap;
        gap: 8px;
      }

      .btn-view-details,
      .btn-add-to-cart-wl {
        flex: 1;
        min-width: 130px;
        text-align: center;
        justify-content: center;
      }

      /* Empty state */
      .wl-empty i {
        font-size: 48px;
      }

      .wl-empty h3 {
        font-size: 18px;
      }
    }

    @media (max-width: 480px) {
      .wl-item-cols {
        grid-template-columns: 1fr !important;
      }

      .wl-item-img {
        height: 130px !important;
      }

      .btn-view-details,
      .btn-add-to-cart-wl {
        width: 100%;
      }
    }

    .container {
      max-width: 1400px !important;
    }

    /* ── Footer ── */
    .pmt-footer {
      border-top: 1px solid var(--border);
      background: #FAFAFA;
      padding: 18px 24px;
      margin-top: 60px;
    }

    .pmt-footer-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-contact {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .footer-contact a {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-contact a:hover {
      color: var(--green-dark);
    }

    .footer-contact a i {
      color: var(--green);
      font-size: 14px;
    }

    .footer-sep {
      color: var(--border);
      font-size: 16px;
    }

    .footer-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-nav li {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .footer-nav a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.15s;
    }

    .footer-nav a:hover {
      color: var(--text-primary);
    }

    .footer-nav .sep {
      color: var(--border);
      font-size: 16px;
    }

    .footer-copy {
      font-size: 12.5px;
      color: var(--text-muted);
      white-space: nowrap;
    }

    #megaAllCat {
      padding: 0 5.5rem;
      /* Desktop */
    }

   @media (max-width: 768px) {
      #megaAllCat, #megaSpecialties {
        padding: 0 1rem !important;
      }

        .wishlist-btn,
  .wishlist-btn,
  .wishlist-btn,
  .wishlist-btn,
  .wishlist-btn,
  .wishlist-btn,
  .wishlist-btn {
    opacity: 1;
  }
    }

    #megaSpecialties, #megaAllCat{
  padding: 0rem 5.5rem;
}