    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    /*  */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    :root {
      --green: #22c55e;
      --green-dark: #16a34a;
      --green-light: #dcfce7;
      --text-primary: #111827;
      --text-muted: #6b7280;
      --text-light: #9ca3af;
      --border: #e5e7eb;
      --font: "Plus Jakarta Sans", sans-serif;
      --nav-height: 64px;
    }

    body {
      font-family: var(--font);
      color: var(--text-primary);
      background: #fff;
      margin: 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* NAVBAR */
    .pmt-navbar {
      height: var(--nav-height);
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

.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-link {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
      transition:
        background 0.15s,
        color 0.15s;
      white-space: nowrap;
    }

    .pmt-nav-link:hover,
    .pmt-nav-link.mega-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .pmt-icon-btn {
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 17px;
      cursor: pointer;
      transition:
        background 0.15s,
        color 0.15s;
      text-decoration: none;
      position: relative;
    }

    .pmt-icon-btn:hover {
      background: #f3f4f6;
      color: var(--text-primary);
    }

    .pmt-icon-btn.cart-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .badge-cart,
    .badge-wishlist {
      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: flex;
      align-items: center;
      justify-content: center;
    }

    /* SEARCH */
    .nav-search-wrap {
      flex: 1;
      max-width: 480px;
      position: relative;
      z-index: 100;
    }

    .nav-search-card {
      display: flex;
      align-items: center;
      background: #fff;
      border: 1.5px solid #86efac;
      border-radius: 100px;
      padding: 6px 6px 6px 16px;
      gap: 8px;
      transition:
        border-color 0.2s,
        box-shadow 0.2s;
    }

    .nav-search-card:focus-within {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .nav-search-input {
      flex: 1;
      border: none;
      outline: none;
      font-family: var(--font);
      font-size: 13.5px;
      color: var(--text-primary);
      background: transparent;
      min-width: 0;
    }

    .nav-search-input::placeholder {
      color: var(--text-light);
    }

    /* Image search button styling is temporarily disabled because the navbar image-search control is commented out.
       Keep this rule for future restoration.
    .nav-search-icon-btn { background: none; border: none; color: var(--text-light); font-size: 16px; cursor: pointer; padding: 0 4px; }
    */
    .nav-search-btn {
      background: #6ee040;
      color: #1a4a08;
      border: none;
      border-radius: 100px;
      padding: 7px 18px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
      transition: background 0.15s;
      white-space: nowrap;
    }

    .nav-search-btn:hover {
      background: #5cd432;
    }

    .search-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1.5px solid #86efac;
      border-radius: 16px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
      z-index: 9999;
      overflow: hidden;
      display: none;
    }

    .search-dropdown.open {
      display: block;
    }

    .sd-section {
      padding: 14px 16px;
    }

    .sd-row-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .sd-section-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .sd-clear-all {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 15px;
      padding: 2px 4px;
      border-radius: 6px;
    }

    .sd-clear-all:hover {
      color: #ef4444;
      background: #fef2f2;
    }

    .sd-recent-list {
      list-style: none;
      padding: 0;
      margin: 0 0 6px;
    }

    .sd-recent-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: 9px;
      transition: background 0.12s;
    }

    .sd-recent-item:hover {
      background: #f9fafb;
    }

    .sd-recent-text {
      font-size: 13.5px;
      color: var(--text-primary);
      cursor: pointer;
      flex: 1;
    }

    .sd-remove {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 15px;
      padding: 2px 4px;
      border-radius: 6px;
    }

    .sd-remove:hover {
      color: #ef4444;
      background: #fef2f2;
    }

    .sd-show-more {
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 2px 10px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .sd-divider {
      height: 1px;
      background: var(--border);
      margin: 0 16px;
    }

    .sd-ai-label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--green-dark);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-style: italic;
    }

    .sd-ai-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .sd-ai-pill {
      background: var(--green-light);
      border: 1px solid #86efac;
      border-radius: 100px;
      padding: 7px 14px;
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 600;
      color: var(--green-dark);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.15s;
    }

    .sd-ai-pill:hover {
      background: #bbf7d0;
    }

    /* MEGA MENU */
    .mega-backdrop {
      position: fixed;
      inset: 0;
      z-index: 1998;
      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, 0.1);
      display: flex;
      height: 420px;
      z-index: 1999;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-10px);
      transition:
        opacity 0.2s,
        transform 0.2s;
    }

    .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 0.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; */
      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:hover .mega-sidebar-icon,
    .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;
    }

    .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 0.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);
    }

    .mega-product-label {
      font-size: 11.5px;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.4;
      font-weight: 500;
    }

    /* CART PAGE */
    .cart-page-wrap {
      padding: 36px 0 64px;
      flex: 1;
    }

    .cart-heading {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 6px;
      letter-spacing: -0.4px;
    }

    .cart-sub {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 600px;
    }

    /* CART ITEM */
    .cart-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 18px 16px;
      margin-bottom: 14px;
      position: relative;
      transition:
        box-shadow 0.2s,
        opacity 0.25s,
        transform 0.25s;
    }

    .cart-item:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .cart-item.removing {
      opacity: 0;
      transform: translateX(12px);
    }

    .cart-item-close {
      position: absolute;
      top: 14px;
      right: 14px;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 18px;
      width: 28px;
      height: 28px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition:
        background 0.15s,
        color 0.15s;
    }

    .cart-item-close:hover {
      background: #fef2f2;
      color: #ef4444;
    }

    .cart-item-img {
      width: 72px;
      height: 72px;
      background: #f3f4f6;
      border-radius: 10px;
      border: 1px solid var(--border);
      flex-shrink: 0;
      overflow: hidden;
    }

    .cart-meta-label {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-light);
      display: block;
      margin-bottom: 2px;
    }

    .cart-meta-value {
      font-size: 13.5px;
    }


    .btn-view {
      padding: 8px 20px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-primary);
      cursor: pointer;
      transition:
        border-color 0.15s,
        background 0.15s;
    }

    .btn-view:hover {
      border-color: #9ca3af;
      background: #f9fafb;
    }

    /* Send Inquiry main button */
    .btn-send-inquiry-main {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(to right, #B0FF8C, #4DF900);
      color: #222222;
      border: none;
      border-radius: 0.75rem;
      padding: 12px 32px;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.15s, box-shadow 0.15s;
      box-shadow: 0 2px 12px rgba(110, 224, 64, 0.25);
    }

    .btn-send-inquiry-main:hover {
      box-shadow: 0 4px 18px rgba(110, 224, 64, 0.35);
    }

    /* EMPTY STATE */
    .cart-empty {
      display: none;
      text-align: center;
      padding: 64px 24px;
    }

    .cart-empty.visible {
      display: block;
    }

    .cart-empty i {
      font-size: 48px;
      color: #d1d5db;
      display: block;
      margin-bottom: 16px;
    }

    .cart-empty h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cart-empty p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .btn-browse {
      display: inline-block;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 28px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
    }

    .btn-browse:hover {
      background: var(--green-dark);
      color: #fff;
    }



    .inquiry-summary.faded {
      opacity: 0.4;
      pointer-events: none;
    }

    /* INQUIRY MODAL */
    .inq-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.35);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .inq-overlay.open {
      pointer-events: all;
      opacity: 1;
    }

    .inq-modal {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 500px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
      transform: translateY(16px);
      transition: transform 0.25s;
      overflow: hidden;
    }

    .inq-overlay.open .inq-modal {
      transform: translateY(0);
    }

    .inq-header {
      padding: 20px 22px 14px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
    }

    .inq-title {
      font-size: 17px;
      font-weight: 800;
      color: var(--text-primary);
    }

    .inq-to {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 3px;
    }

    .inq-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 20px;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
    }

    .inq-close:hover {
      background: #f3f4f6;
    }

    .inq-products-list {
      max-height: 240px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: #d1d5db transparent;
    }

    .inq-product-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 22px;
    }

    .inq-qty-badge {
      margin-left: auto;
      background: #dcfce7;
      color: #16a34a;
      font-size: 12px;
      font-weight: 700;
      border-radius: 100px;
      padding: 4px 12px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .inq-product-img {
      width: 56px;
      height: 56px;
      background: #f3f4f6;
      border-radius: 10px;
      border: 1px solid var(--border);
      flex-shrink: 0;
    }

    .inq-product-name {
      flex: 1;
      font-size: 13.5px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.4;
    }

    .inq-qty {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
      flex-shrink: 0;
    }

    .qty-stepper {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .qty-btn {
      width: 34px;
      height: 34px;
      border: none;
      background: #f9fafb;
      font-size: 18px;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
      user-select: none;
    }

    .qty-btn:hover {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .qty-input {
      width: 64px;
      height: 34px;
      border: none;
      outline: none;
      text-align: center;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary);
      -moz-appearance: textfield;
    }

    .qty-input::-webkit-inner-spin-button,
    .qty-input::-webkit-outer-spin-button {
      -webkit-appearance: none;
    }

    .inq-details-box {
      padding: 16px 22px;
    }

    .inq-details-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .inq-details-hint {
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .inq-textarea {
      width: 100%;
      min-height: 110px;
      border: 1.5px solid #ef4444;
      border-radius: 10px;
      padding: 12px 14px;
      font-family: var(--font);
      font-size: 13.5px;
      color: var(--text-primary);
      resize: vertical;
      outline: none;
      transition: border-color 0.2s;
    }

    .inq-textarea:focus {
      border-color: var(--green);
    }

    .inq-attach {
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .inq-attach-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      color: var(--green-dark);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .inq-attach-btn:hover {
      color: var(--green);
    }

    .inq-attach-name {
      font-size: 12px;
      color: var(--text-muted);
    }

    .inq-footer {
      padding: 0 22px 20px;
      text-align: center;
    }

    .btn-send-now {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #6ee040;
      color: #1a4a08;
      border: none;
      border-radius: 100px;
      padding: 13px 48px;
      font-family: var(--font);
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      transition:
        background 0.15s,
        box-shadow 0.15s;
    }

    .btn-send-now:hover {
      background: #5cd432;
      box-shadow: 0 6px 20px rgba(110, 224, 64, 0.45);
    }

    .inq-success {
      display: none;
      text-align: center;
      padding: 40px 22px 32px;
    }

    .inq-success.visible {
      display: block;
    }

    .inq-success-icon {
      font-size: 48px;
      color: var(--green);
      margin-bottom: 12px;
    }

    .inq-success-title {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .inq-success-sub {
      font-size: 13.5px;
      color: var(--text-muted);
    }

    /* AUTH MODAL */
    #authOverlay {
      position: fixed;
      inset: 0;
      z-index: 99990;
      background: rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    #authOverlay.open {
      opacity: 1;
      pointer-events: all;
    }

    #authOverlay .auth-modal {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-width: 620px;
      min-height: 380px;
      display: flex;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s;
    }

    #authOverlay.open .auth-modal {
      transform: translateY(0) scale(1);
    }

    #authOverlay .auth-left {
      flex: 0 0 240px;
      background: linear-gradient(160deg,
          #4ade80 0%,
          #22c55e 40%,
          #16a34a 100%);
      padding: 32px 24px 0;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    #authOverlay .auth-left-welcome {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 6px;
    }

    #authOverlay .auth-left-brand {
      font-size: 36px;
      font-weight: 800;
      font-style: italic;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    #authOverlay .auth-left-tagline {
      font-size: 18px;
      font-style: italic;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    #authOverlay .auth-left-tagline strong {
      font-weight: 800;
    }

    #authOverlay .auth-left-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
      max-width: 180px;
    }

    #authOverlay .auth-right {
      flex: 1;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      background: #fff;
      overflow-y: auto;
    }

    #authOverlay .auth-form-title {
      font-size: 18px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 4px;
    }

    #authOverlay .auth-form-sub {
      font-size: 12.5px;
      color: #6b7280;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    #authOverlay .auth-field {
      margin-bottom: 14px;
    }

    #authOverlay .auth-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #374151;
      margin-bottom: 5px;
    }

    #authOverlay .auth-label sup {
      color: #ef4444;
    }

    #authOverlay .auth-input {
      display: block;
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid #e5e7eb;
      border-radius: 9px;
      font-family: var(--font);
      font-size: 13.5px;
      color: #111827;
      outline: none;
      background: #fff;
      transition:
        border-color 0.2s,
        box-shadow 0.2s;
    }

    #authOverlay .auth-input:focus {
      border-color: #22c55e;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    #authOverlay .auth-input::placeholder {
      color: #9ca3af;
    }

    #authOverlay .auth-hint {
      font-size: 11px;
      color: #ef4444;
      margin-top: 4px;
      display: block;
    }

    #authOverlay .auth-pw-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
    }

    #authOverlay .auth-show-pw {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      color: #6b7280;
      cursor: pointer;
    }

    #authOverlay .auth-show-pw input {
      cursor: pointer;
      accent-color: #22c55e;
    }

    #authOverlay .auth-forgot {
      font-size: 12.5px;
      font-weight: 600;
      color: #6b7280;
      text-decoration: none;
    }

    #authOverlay .auth-forgot:hover {
      color: #16a34a;
    }

    #authOverlay .btn-auth {
      display: block;
      width: 100%;
      padding: 12px 0;
      background: #6ee040;
      color: #1a4a08;
      border: none;
      border-radius: 100px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      margin-top: 16px;
      text-align: center;
      transition:
        background 0.15s,
        box-shadow 0.15s;
    }

    #authOverlay .btn-auth:hover {
      background: #5cd432;
      box-shadow: 0 6px 20px rgba(110, 224, 64, 0.4);
    }

    #authOverlay .auth-switch {
      font-size: 12.5px;
      color: #6b7280;
      text-align: center;
      margin-top: 12px;
    }

    #authOverlay .auth-switch a {
      color: #16a34a;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
    }

    #authOverlay .auth-note {
      font-size: 11px;
      color: #9ca3af;
      text-align: center;
      margin-top: 10px;
      line-height: 1.5;
    }

    #authOverlay .auth-note strong {
      color: #6b7280;
    }

    /* FOOTER */
    .pmt-footer {
      border-top: 1px solid var(--border);
      background: #fafafa;
      padding: 18px 24px;
      margin-top: 60px;
    }

    .pmt-footer-inner {
      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;
    }

    .footer-contact a {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: #369709;
      text-decoration: none;
    }

    .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 a {
      font-size: 13px;
      color: #222;
      text-decoration: none;
    }

    .footer-nav .sep {
      color: var(--border);
      font-size: 16px;
    }

    .footer-copy {
      font-size: 12.5px;
      color: var(--text-light);
      white-space: nowrap;
    }

    /* RESPONSIVE */
    @media (max-width: 991.98px) {
      .pmt-nav-links-desktop {
        display: none !important;
      }

      .inquiry-summary {
        position: static;
      }
    }

    @media (max-width: 767.98px) {
      .cart-page-wrap {
        padding: 20px 0 48px;
      }

      .inquiry-summary {
        position: static;
        margin-top: 0;
      }

      .cart-item {
        padding: 14px 14px 12px;
      }

      .cart-item-img {
        width: 56px;
        height: 56px;
      }

      .cart-meta-label {
        font-size: 10px;
      }

      .cart-meta-value {
        font-size: 12.5px;
      }
    }

    @media (max-width: 575.98px) {
      .cart-heading {
        font-size: 18px;
      }

      .btn-contact,
      .btn-view {
        font-size: 12px;
        padding: 7px 12px;
      }

      .btn-send-inquiry-main {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 11px 20px;
      }

      .inq-overlay {
        padding: 0;
        align-items: flex-end;
      }

      .inq-modal {
        border-radius: 20px 20px 0 0;
        max-height: 90vh;
        overflow-y: auto;
      }

      .mega-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
      }

      .cart-item .d-flex.flex-wrap.gap-4 {
        gap: 12px !important;
      }
    }

    html {
  overflow-x: hidden;
}

    @font-face {
      font-family: 'Poppins-SemiBold';
      src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('woff2')
    }

    @font-face {
      font-family: 'Poppins-Regular';
      src: url('../fonts/Poppins/Poppins-Regular.ttf') format('woff2')
    }

    @font-face {
      font-family: 'Poppins-Medium';
      src: url('../fonts/Poppins/Poppins-Medium.ttf') format('woff2')
    }

    body {
      font-family: var(--font);
      color: var(--text-primary);
      background: #fff;
      margin: 0;
    }

    /* NAVBAR */
    .pmt-navbar {
      height: var(--nav-height);
      background: #fff;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      gap: 16px;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 24px;
    }

.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 {
      flex: 1;
      align-self: stretch;
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 4px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .pmt-nav-links li {
      display: flex;
    }

    .pmt-nav-links a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 5px;
      border-bottom: 2px solid transparent;
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }

    .pmt-nav-links a:hover {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .pmt-nav-links a.mega-active {
      background: var(--green-light);
      color: var(--green-dark);
      border-bottom-color: var(--green);
      border-radius: 8px 8px 0 0;
    }

    .pmt-nav-icons {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .pmt-icon-btn {
      width: 36px;
      height: 36px;
      border: none;
      background: transparent;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-size: 17px;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      text-decoration: none;
      position: relative;
    }

    .pmt-icon-btn:hover {
      background: #F3F4F6;
      color: var(--text-primary);
    }

    .pmt-icon-btn.cart-active {
      color: var(--green-dark);
      background: var(--green-light);
    }

    .badge-cart {
      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: flex;
      align-items: center;
      justify-content: center;
    }

    /* CART LAYOUT */
    .cart-page {
      max-width: 1400px;
      margin: 0 auto;
      padding: 36px 24px 64px;
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 28px;
      align-items: start;
    }

    .cart-heading {
      font-size: 22px;
      color: #222222;
      margin-bottom: 6px;
      letter-spacing: -0.4px;
      font-family: 'Poppins-SemiBold';
    }

    .cart-sub {
      font-size: 13.5px;
      color: #222222;
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 58rem;
      font-family: 'Poppins-Regular';
    }

    /* Cart item */
    .cart-item {
      background: #F9F9F9;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 18px 18px 16px;
      margin-bottom: 14px;
      position: relative;
      transition: box-shadow 0.2s, opacity 0.25s, transform 0.25s;
    }

    .cart-item:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .cart-item.removing {
      opacity: 0;
      transform: translateX(12px);
    }

    .cart-item-close {
      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;
      color: #fff;
      font-size: 18px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s, filter 0.2s;
      z-index: 2;
    }

    .cart-item-close i {
      font-size: 18px;
      line-height: 1;
      display: block;
    }

    .cart-item-close: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);
    }

    .cart-item-close:focus-visible {
      outline: 3px solid #FCA5A5;
      outline-offset: 2px;
    }

    .cart-item-top {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 14px;
      padding-right: 32px;
    }

    .cart-item-img {
      width: 72px;
      height: 72px;
      background: #F3F4F6;
      border-radius: 10px;
      border: 1px solid var(--border);
      flex-shrink: 0;
    }

    .cart-item-meta {
      flex: 1;
      display: flex;
      gap: 24px;
    }

    .cart-meta-field {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .cart-meta-label {
      font-size: 13px;
      color: var(--text-light);
      font-family: 'Poppins-Regular';
    }

    .cart-meta-value {
      font-size: 14px;
      color: #222222;
      font-family: 'Poppins-Medium';
    }

    .cart-item-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .btn-contact {
      color: #222222 !important;
      display: inline-flex;
      align-items: center;
      gap: 6px;
background: linear-gradient(to right, #B0FF8C, #4DF900);
      color: #222222;
      border: none;
      padding: 8px 16px;
      font-size: 12.5px;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.15s;
      font-family: 'Poppins-SemiBold';
    }


    .btn-view {
      padding: 8px 20px;
      border: 1.5px solid #DDDDDD;
      border-radius: 8px;
      font-size: 12.5px;
      color: #222222;
      cursor: pointer;
      background: #F9FAFB;
      transition: border-color 0.15s, background 0.15s;
      font-family: 'Poppins-SemiBold';
    }

    .btn-view:hover {
      border-color: #DDDDDD;
      background: #e9e8e8;
    }

    .btn-inquiry-item {
      padding: 8px 20px;
      border: none;
      border-radius: 8px;
      background: #6EE040;
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 700;
      color: #1a4a08;
      cursor: pointer;
      transition: background 0.15s;
    }

    .btn-inquiry-item:hover {
      background: #5cd432;
    }

    /* Empty state */
    .cart-empty {
      display: none;
      text-align: center;
      padding: 64px 24px;
    }

    .cart-empty.visible {
      display: block;
    }

    .cart-empty i {
      font-size: 48px;
      color: #D1D5DB;
      display: block;
      margin-bottom: 16px;
    }

    .cart-empty h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cart-empty p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .btn-browse {
      display: inline-block;
      background: var(--green);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 28px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s;
    }

    .btn-browse:hover {
      background: var(--green-dark);
      color: #fff;
    }

    /* Inquiry Summary */
    .inquiry-summary {
      background: linear-gradient(to right, #B0FF8C, #4DF900);
      border-radius: 16px;
      padding: 22px 20px 20px;
      position: sticky;
      top: calc(var(--nav-height) + 20px);
      transition: opacity 0.3s;
    }

    .inquiry-summary.faded {
      opacity: 0.4;
      pointer-events: none;
    }

    .inq-sum-title {
      font-size: 16px;
      font-family: "Poppins-SemiBold";
      color: #222222;
      margin-bottom: 18px;
    }

    .inq-sum-rows {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }

    .inq-sum-row {
      display: flex;
      flex-direction: column;
    }

    .inq-sum-label {
      font-size: 12px;
      font-family: "Poppins-Regular";
      color: #222222;
      opacity: 60%;
    }

    .inq-sum-value {
      font-size: 13px;
      color: #222222;
      font-family: "Poppins-Medium";
    }

    .btn-inq-all {
      width: 100%;
      padding: 13px 0;
      background: #fff;
      color: var(--green-dark);
      border: none;
      border-radius: 10px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: background 0.15s, box-shadow 0.15s;
    }

    .btn-inq-all:hover {
      background: #F0FDF4;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    }

    /* INQUIRY MODAL */
    .inq-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(0, 0, 0, 0.35);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .inq-overlay.open {
      pointer-events: all;
      opacity: 1;
    }

    .inq-modal {
      background: #fff;
      border-radius: 16px;
      width: 100%;
      max-width: 900px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
      transform: translateY(16px);
      transition: transform 0.25s ease;
      overflow: hidden;
    }

    .inq-overlay.open .inq-modal {
      transform: translateY(0);
    }

    .inq-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      padding: 22px 22px 16px;
    }

    .inq-title {
      font-family: 'Poppins-SemiBold';
      font-size: 18px;
      font-weight: 800;
      color: var(--text-primary);
      letter-spacing: -0.2px;
    }

    .inq-to {
      font-family: 'Poppins-Regular';
      font-size: 12px;
      color: var(--text-light);
      margin-top: 3px;
    }

    .inq-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 22px;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
      flex-shrink: 0;
    }

    .inq-close:hover {
      background: #F3F4F6;
      color: var(--text-primary);
    }

    .inq-product-row {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 22px 18px;
    }

    .inq-product-img {
      width: 52px;
      height: 52px;
      background: #F3F4F6;
      border-radius: 10px;
      border: 1px solid var(--border);
      flex-shrink: 0;
    }

    .inq-product-name {
      font-family: 'Poppins-Regular';
      flex: 1;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-primary);
      line-height: 1.5;
    }

    .inq-qty {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .inq-qty-label {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .inq-qty-val {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .inq-details-box {
      margin: 0 22px 20px;
      background: #F9FAFB;
      border-radius: 12px;
      padding: 16px;
    }

    .inq-details-label {
      font-family: 'Poppins-SemiBold';
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 4px;
    }

    .inq-details-label .req {
      color: #EF4444;
    }

    .inq-details-hint {
      font-family: 'Poppins-Regular';
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .inq-textarea {
      width: 100%;
      min-height: 110px;
      border: 1.5px solid #EF4444;
      border-radius: 10px;
      padding: 12px 14px;
      font-family: var(--font);
      font-size: 13.5px;
      color: var(--text-primary);
      background: #fff;
      resize: vertical;
      outline: none;
      transition: border-color 0.2s;
      line-height: 1.6;
      display: block;
    }

    .inq-textarea:focus {
      border-color: var(--green);
    }

    .inq-textarea::placeholder {
      color: var(--text-light);
    }

    .inq-attach {
      margin-top: 10px;
    }

    .inq-attach-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      color: var(--green-dark);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 0;
      transition: color 0.15s;
    }

    .inq-attach-btn:hover {
      color: var(--green);
    }

    .inq-attach-name {
      font-size: 11.5px;
      color: var(--text-muted);
      margin-top: 3px;
    }

    .inq-footer {
      padding: 0 22px 24px;
      text-align: center;
    }

    .btn-send-now {
      background: linear-gradient(to right, #B0FF8C, #4DF900) !important;
      color: #222222;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #6EE040;
      color: #1a4a08;
      border: none;
      border-radius: 100px;
      padding: 1rem 2rem;
      font-family: var(--font);
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
    }

    .btn-send-now:hover {
      background: #5cd432;
      box-shadow: 0 6px 20px rgba(110, 224, 64, 0.45);
      transform: translateY(-1px);
    }

    .btn-send-now:active {
      transform: translateY(0);
    }

    .inq-success {
      display: none;
      text-align: center;
      padding: 48px 22px 40px;
    }

    .inq-success.visible {
      display: block;
    }

    .inq-success-icon {
      font-size: 52px;
      color: var(--green);
      margin-bottom: 12px;
    }

    .inq-success-title {
      font-size: 19px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .inq-success-sub {
      font-size: 13.5px;
      color: var(--text-muted);
    }

    /* ══ MEGA MENU ══ */
    .mega-menu-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      pointer-events: none;
    }

    .mega-menu-overlay.open {
      pointer-events: all;
    }

    .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, 0.1);
      display: flex;
      height: 420px;
      z-index: 1999;
      transform: translateY(-10px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .mega-menu.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }

    /* Left sidebar */
    .mega-sidebar {
      width: 220px;
      flex-shrink: 0;
      border-right: 1px solid var(--border);
      overflow-y: auto;
      scrollbar-width: none;
      padding: 8px 0;
      position: relative;
    }

    .mega-sidebar::-webkit-scrollbar {
      display: none;
    }

    .mega-sidebar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 16px;
      cursor: pointer;
      transition: background 0.12s;
      border-left: 3px solid transparent;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-muted);
      user-select: none;
    }

    .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;
    }

    .mega-sidebar-item.active .mega-sidebar-icon {
      background: var(--green-light);
    }

    /* Sidebar scroll arrows */
    .mega-scroll-arrow {
      position: sticky;
      left: 0;
      right: 0;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
      color: var(--green);
      font-size: 13px;
      cursor: pointer;
      user-select: none;
    }

    .mega-scroll-arrow.bottom {
      background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
      bottom: 0;
    }

    /* Right content */
    .mega-content {
      flex: 1;
      overflow-y: auto;
      padding: 24px 28px;
      scrollbar-color: var(--green) #F3F4F6;
      scrollbar-width: thin;
    }

    .mega-content::-webkit-scrollbar {
      width: 6px;
    }

    .mega-content::-webkit-scrollbar-track {
      background: #F3F4F6;
      border-radius: 4px;
    }

    .mega-content::-webkit-scrollbar-thumb {
      background: var(--green);
      border-radius: 4px;
    }

    .mega-section {
      margin-bottom: 32px;
    }

    .mega-section-title {
      font-size: 15px;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 16px;
      letter-spacing: -0.2px;
    }

    .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 0.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);
      flex-shrink: 0;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .mega-product-item:hover .mega-product-circle {
      border-color: #86EFAC;
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
    }

    .mega-product-label {
      font-size: 11.5px;
      color: var(--text-muted);
      text-align: center;
      line-height: 1.4;
      font-weight: 500;
    }

    /* Close backdrop */
    .mega-backdrop {
      position: fixed;
      inset: 0;
      z-index: 1998;
      display: none;
    }

    .mega-backdrop.open {
      display: block;
    }

    /* Active nav link when mega open */
    .pmt-nav-links a.mega-active {
      background: var(--green-light);
      color: var(--green-dark);
    }

    /* SEARCH BAR */
    .nav-search-wrap {
      flex: 1;
      max-width: 420px;
      margin: 0 auto;
      position: relative;
      z-index: 100;
      isolation: isolate;
    }

    .nav-search-card {
      display: flex;
      align-items: center;
      background: #fff;
      border: 1.5px solid #86EFAC;
      border-radius: 100px;
      padding: 6px 6px 6px 16px;
      gap: 8px;
      transition: border-color 0.2s;
    }

    .nav-search-card:focus-within {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .nav-search-input {
      flex: 1;
      border: none;
      outline: none;
      font-family: var(--font);
      font-size: 13.5px;
      color: var(--text-primary);
      background: transparent;
    }

    .nav-search-input::placeholder {
      color: var(--text-light);
    }

    /* Image search button styling is temporarily disabled because the navbar image-search control is commented out.
       Keep this rule for future restoration.
    .nav-search-icon-btn { background:none; border:none; color:var(--text-light); font-size:16px; cursor:pointer; padding:0 4px; display:flex; align-items:center; }
    */
    .nav-search-btn {
      background: #6EE040;
      color: #1a4a08;
      border: none;
      border-radius: 100px;
      padding: 7px 18px;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
      transition: background 0.15s;
    }

    .nav-search-btn:hover {
      background: #5cd432;
    }

    .search-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1.5px solid #86EFAC;
      border-radius: 16px;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
      z-index: 9999;
      overflow: hidden;
      display: none;
    }

    .search-dropdown.open {
      display: block;
    }

    .sd-section {
      padding: 14px 16px;
    }

    .sd-row-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }

    .sd-section-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-primary);
    }

    .sd-clear-all {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 15px;
      padding: 2px 4px;
      border-radius: 6px;
    }

    .sd-clear-all:hover {
      color: #EF4444;
    }

    .sd-recent-list {
      list-style: none;
      padding: 0;
      margin: 0 0 6px;
    }

    .sd-recent-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 10px;
      border-radius: 9px;
      transition: background 0.12s;
    }

    .sd-recent-item:hover {
      background: #F9FAFB;
    }

    .sd-recent-text {
      font-size: 13.5px;
      color: var(--text-primary);
      cursor: pointer;
      flex: 1;
    }

    .sd-remove {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--text-light);
      font-size: 15px;
      padding: 2px 4px;
    }

    .sd-remove:hover {
      color: #EF4444;
    }

    .sd-show-more {
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text-muted);
      padding: 2px 10px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .sd-divider {
      height: 1px;
      background: var(--border);
      margin: 0 16px;
    }

    .sd-ai-label {
      font-size: 12.5px;
      font-weight: 600;
      color: var(--green-dark);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-style: italic;
    }

    .sd-ai-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .sd-ai-pill {
      background: var(--green-light);
      border: 1px solid #86EFAC;
      border-radius: 100px;
      padding: 7px 14px;
      font-family: var(--font);
      font-size: 12.5px;
      font-weight: 600;
      color: var(--green-dark);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background 0.15s;
    }

    .sd-ai-pill:hover {
      background: #BBF7D0;
    }

    /* FOOTER */
    .pmt-footer {
      border-top: 1px solid var(--border);
      background: #FAFAFA;
      padding: 18px 24px;
      margin-top: 60px;
    }

    .pmt-footer-inner {
      max-width: 1280px;
      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-light);
      white-space: nowrap;
    }

    /* ── Quantity Stepper ── */
    .qty-stepper {
      display: flex;
      align-items: center;
      gap: 0;
      border: 1.5px solid var(--border, #E5E7EB);
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
    }

    .qty-stepper:focus-within {
      border-color: var(--green, #22C55E);
    }

    .qty-btn {
      width: 34px;
      height: 34px;
      border: none;
      background: #F9FAFB;
      font-size: 18px;
      font-weight: 400;
      color: var(--text-muted, #6B7280);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, color 0.15s;
      flex-shrink: 0;
      line-height: 1;
      user-select: none;
    }

    .qty-btn:hover {
      background: var(--green-light, #DCFCE7);
      color: var(--green-dark, #16A34A);
    }

    .qty-btn:active {
      background: #BBF7D0;
    }

    .qty-input {
      width: 64px;
      height: 34px;
      border: none;
      outline: none;
      text-align: center;
      font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
      font-size: 14px;
      font-weight: 700;
      color: var(--text-primary, #111827);
      background: #fff;
      -moz-appearance: textfield;
    }

    .qty-input::-webkit-inner-spin-button,
    .qty-input::-webkit-outer-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }



    /* ══ AUTH MODAL ══ */
    .auth-overlay {
      position: fixed;
      inset: 0;
      z-index: 99990;
      background: rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      backdrop-filter: blur(4px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .auth-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .auth-modal {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-width: 620px;
      min-height: 380px;
      display: flex;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
      transform: translateY(20px) scale(0.97);
      transition: transform 0.35s ease;
    }

    .auth-overlay.open .auth-modal {
      transform: translateY(0) scale(1);
    }

    /* ── Left panel ── */
    .auth-left {
      flex: 0 0 240px;
      background: linear-gradient(160deg, #4ade80 0%, #22c55e 40%, #16a34a 100%);
      padding: 32px 24px 0;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .auth-left-welcome {
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 6px;
    }

    .auth-left-brand {
      font-size: 36px;
      font-weight: 800;
      font-style: italic;
      color: #fff;
      line-height: 1;
      margin-bottom: 8px;
      letter-spacing: -1px;
    }

    .auth-left-tagline {
      font-size: 18px;
      font-weight: 400;
      font-style: italic;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 10px;
    }

    .auth-left-tagline strong {
      font-weight: 800;
    }

    .auth-left-sub {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.5;
      max-width: 180px;
    }

    .auth-gift-img {
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 160px;
      height: 160px;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><ellipse cx="50" cy="80" rx="40" ry="12" fill="rgba(0,0,0,0.15)"/><rect x="20" y="38" width="60" height="40" rx="4" fill="%23f0fdf4"/><rect x="20" y="30" width="60" height="12" rx="3" fill="%23dcfce7"/><rect x="45" y="20" width="10" height="30" fill="%2386efac"/><path d="M50 20 Q40 10 30 15 Q25 25 50 25 Q75 25 70 15 Q60 10 50 20Z" fill="%2322c55e"/><circle cx="50" cy="22" r="4" fill="%23fff"/></svg>') no-repeat center/contain;
    }

    /* ── Right panel ── */
    .auth-right {
      flex: 1;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
    }

    .auth-form-title {
      font-size: 18px;
      font-weight: 800;
      color: #111827;
      margin-bottom: 4px;
      letter-spacing: -0.3px;
    }

    .auth-form-sub {
      font-size: 12.5px;
      color: #6B7280;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    /* Fields */
    .auth-field {
      margin-bottom: 14px;
    }

    .auth-label {
      font-size: 12px;
      font-weight: 600;
      color: #374151;
      margin-bottom: 5px;
      display: block;
    }

    .auth-label sup {
      color: #EF4444;
    }

    .auth-input {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid #E5E7EB;
      border-radius: 9px;
      font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
      font-size: 13.5px;
      color: #111827;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      background: #fff;
    }

    .auth-input:focus {
      border-color: #22C55E;
      box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
    }

    .auth-input::placeholder {
      color: #9CA3AF;
    }

    .auth-hint {
      font-size: 11px;
      color: #EF4444;
      margin-top: 4px;
      display: block;
    }

    /* Password row */
    .auth-pw-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 8px;
    }

    .auth-show-pw {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12.5px;
      color: #6B7280;
      cursor: pointer;
      user-select: none;
    }

    .auth-show-pw input {
      cursor: pointer;
      accent-color: #22C55E;
    }

    .auth-forgot {
      font-size: 12.5px;
      font-weight: 600;
      color: #6B7280;
      text-decoration: none;
      transition: color 0.15s;
    }

    .auth-forgot:hover {
      color: #16A34A;
    }

    /* CTA button */
    .btn-auth {
      width: 100%;
      padding: 12px 0;
      background: #6EE040;
      color: #1a4a08;
      border: none;
      border-radius: 100px;
      font-family: var(--font, 'Plus Jakarta Sans', sans-serif);
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
      margin-top: 16px;
    }

    .btn-auth:hover {
      background: #5cd432;
      box-shadow: 0 6px 20px rgba(110, 224, 64, 0.4);
      transform: translateY(-1px);
    }

    .btn-auth:active {
      transform: translateY(0);
    }

    /* Switch link */
    .auth-switch {
      font-size: 12.5px;
      color: #6B7280;
      text-align: center;
      margin-top: 12px;
    }

    .auth-switch a {
      color: #16A34A;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
    }

    .auth-switch a:hover {
      text-decoration: underline;
    }

    /* Note */
    .auth-note {
      font-size: 11px;
      color: #9CA3AF;
      text-align: center;
      margin-top: 10px;
      line-height: 1.5;
    }

    .auth-note strong {
      color: #6B7280;
    }


    /* ── Product Image Placeholders ── */
    .ph {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border-radius: inherit;
    }

    .ph-cal {
      background: #DCFCE7;
      color: #16A34A;
    }

    .ph-rx {
      background: #EFF6FF;
      color: #3B82F6;
    }

    .ph-poster {
      background: #FFF7ED;
      color: #F97316;
    }

    .ph-video {
      background: #FEF2F2;
      color: #EF4444;
    }

    .ph-app {
      background: #F0F9FF;
      color: #0EA5E9;
    }

    .ph-note {
      background: #FDF4FF;
      color: #A855F7;
    }

    .ph-desk {
      background: #F5F3FF;
      color: #8B5CF6;
    }

    .ph-default {
      background: #F3F4F6;
      color: #6B7280;
    }

    .ph i {
      font-size: 28px;
      opacity: 0.8;
    }

    .ph span {
      font-size: 11px;
      font-weight: 700;
      opacity: 0.65;
    }


    /* ═══════════════════════════════════════
       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;
      }
    }

    /* ════════════════════════════════════════════
       cart.html MOBILE
    ════════════════════════════════════════════ */
    @media (max-width: 768px) {

      /* Stack cart + summary vertically */
      .cart-page {
        grid-template-columns: 1fr !important;
        padding: 16px 16px 48px !important;
        gap: 20px;
      }

      .pmt-footer {
        margin-top: 0px !important;
      }

      /* Cart items */
      .cart-item-inner {
        flex-direction: column;
      }

      .cart-item-img {
        width: 100% !important;
        height: 180px !important;
        max-width: 100%;
      }

      .cart-item-info {
        padding: 0;
      }

      /* Mega menu cert grid */
      .cert-grid-inner {
        grid-template-columns: repeat(3, 1fr) !important;
      }
    }

    @media (max-width: 480px) {
      .cart-heading {
        font-size: 18px;
      }
    }


    /* ═══════════════════════════════════════════════════════════
       RESPONSIVE — Mobile First (shared across all pages)
       320px → 480px → 768px → 1024px → 1280px+
    ═══════════════════════════════════════════════════════════ */

    /* ── 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;
      }
    }

    /* ── cart.html specific ── */
    @media (max-width: 1024px) {
      .cart-page {
        grid-template-columns: 1fr 260px !important;
        gap: 20px;
      }
    }

    @media (max-width: 768px) {

      /* Stack cart items + summary */
      .cart-page {
        grid-template-columns: 1fr !important;
        padding: 16px 12px 48px !important;
        gap: 16px;
      }

      /* Cart item layout */
      .cart-item-top {
        flex-direction: column;
        gap: 12px;
        padding-right: 36px;
      }

      .cart-item-img {
        width: 100% !important;
        height: 160px !important;
        border-radius: 10px;
      }

      .cart-item-meta {
        flex-direction: column;
        gap: 8px;
      }

      .cart-item-actions {
        flex-wrap: wrap;
        gap: 8px;
      }

      .cart-heading {
        font-size: 20px;
      }

      /* Inquiry modal in cart */
      .inq-modal {
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
      }
    }

    @media (max-width: 480px) {
      .cart-page {
        padding: 12px 10px 48px !important;
      }

      .cart-item {
        padding: 14px 14px 12px;
      }

      .cart-item-img {
        height: 130px !important;
      }
    }

    .container {
      max-width: 1400px !important;
    }

    .d-lg-none {
      display: none !important;
    }


    @media (max-width: 480px) {
      .for-mob {
        flex-direction: column !important;
      }
    }

    .inq-products-list {
      padding: 1rem 0rem;
    }

    #sendInquiryWrap {
      margin-top: 2rem;
    }

    .btn-send-inquiry-main {
      font-family: 'Poppins-SemiBold';
      box-shadow: 4px 6px 21px #B0FF8C !important;
    }

    #megaAllCat {
      padding: 0 5.5rem;
      /* Desktop */
    }

    @media (max-width: 768px) {
      #megaAllCat, #megaSpecialties {
        padding: 0 1rem !important;
      }


      .wishlist-btn {
        opacity: 1;
      }
    }
