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

  :root {
    --cream: #FAF8F5;
    --warm-white: #FFFFFF;
    --text-dark: #1C1C1A;
    --text-mid: #6B6860;
    --text-light: #A8A49E;
    --accent: #C4A882;
    --accent-light: #EDE4D8;
    --border: #EAE6E0;
    --stock-low: #D4614A;
    --stock-bg: #FDF0EE;
    --stock-available: #2E7D32;
    --stock-available-bg: #EDF7ED;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-dark);
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo em {
    color: var(--accent);
    font-style: italic;
  }

  .nav-divider {
    width: 1px;
    height: 20px;
    background: var(--border);
    flex-shrink: 0;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    flex-shrink: 0;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s ease;
  }

  .nav-links a:hover {
    color: var(--text-dark);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* search box */
  .nav-search-wrap {
    flex: 1;
    max-width: 300px;
    position: relative;
    margin-left: auto;
  }

  .nav-search-box {
    width: 100%;
    height: 38px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    background: var(--warm-white);
    padding: 0 16px 0 38px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

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

  .nav-search-box:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.12);
  }

  .nav-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    display: flex;
    align-items: center;
  }

  .nav-search-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--border);
    border: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 11px;
    line-height: 1;
    transition: background 0.15s;
  }

  .nav-search-clear:hover {
    background: var(--text-light);
    color: #fff;
  }

  .nav-search-clear.visible {
    display: flex;
  }

  /* search dropdown */
  .search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    z-index: 200;
  }

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

  .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border);
  }

  .search-result-item:last-child {
    border-bottom: none;
  }

  .search-result-item:hover {
    background: var(--cream);
  }

  .search-result-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .search-result-info {
    flex: 1;
    min-width: 0;
  }

  .search-result-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-result-cat {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }

  .search-result-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    flex-shrink: 0;
  }

  .search-no-result {
    padding: 1.25rem;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

  .cart-btn:hover {
    background: #333;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    padding-top: 68px;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 20% 60%, rgba(196, 168, 130, 0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 80% 30%, rgba(196, 168, 130, 0.08) 0%, transparent 70%);
  }

  .hero-content {
    position: relative;
    max-width: 700px;
    padding: 4rem 2rem;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--accent);
  }

  .hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 420px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-dark);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
  }

  .hero-cta:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .hero-cta svg {
    transition: transform 0.2s;
  }

  .hero-cta:hover svg {
    transform: translateX(3px);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {

    0%,
    100% {
      opacity: 0.4;
    }

    50% {
      opacity: 1;
    }
  }

  /* ── MARQUEE STRIP ── */
  .marquee-strip {
    background: var(--text-dark);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .marquee-inner {
    display: inline-flex;
    animation: marquee 22s linear infinite;
  }

  .marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
  }

  .marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* ── SECTION ── */
  section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
  }

  .section-title em {
    font-style: italic;
  }

  .view-all {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s, gap 0.2s;
    white-space: nowrap;
  }

  .view-all:hover {
    color: var(--text-dark);
    gap: 10px;
  }

  /* ── PRODUCTS GRID ── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  }

  .product-img {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .product-actual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .product-card:hover .product-actual-img {
    transform: scale(1.08);
  }

  .product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-img-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.35;
  }

  .stock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .stock-badge.available {
    background: var(--stock-available-bg);
    color: var(--stock-available);
    border: 1px solid rgba(46, 125, 50, 0.2);
  }

  .stock-badge.oos {
    background: var(--stock-bg);
    color: var(--stock-low);
    border: 1px solid rgba(212, 97, 74, 0.2);
  }

  .new-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--text-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .product-body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .product-category {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.4rem;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.35rem;
  }

  .product-desc {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 300;
    margin-bottom: 1.2rem;
    line-height: 1.6;
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .product-price span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
  }

  .add-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--text-dark);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: background 0.2s, color 0.2s, transform 0.15s;
    flex-shrink: 0;
  }

  .add-btn:hover {
    background: var(--text-dark);
    color: #fff;
    transform: scale(1.08);
  }

  /* ── WHATSAPP ── */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .wa-float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: waPulse 2.5s ease-in-out infinite;
  }

  .wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    animation: none;
  }

  @keyframes waPulse {

    0%,
    100% {
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
      box-shadow: 0 4px 28px rgba(37, 211, 102, 0.65);
    }
  }

  .wa-tooltip {
    background: var(--text-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 7px 14px;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
  }

  .wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
  }

  .wa-order-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F0FDF5;
    color: #166534;
    border: 1px solid #BBF7D0;
    border-radius: 100px;
    padding: 9px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    margin-top: 0.75rem;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
  }

  .wa-order-btn:hover {
    background: #DCFCE7;
    border-color: #86EFAC;
    transform: translateY(-1px);
  }

  /* ── ABOUT STRIP ── */
  .about-strip {
    background: var(--accent-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-strip section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-text .eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
  }

  .about-text p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.85;
  }

  .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pillar {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
  }

  .pillar-icon {
    width: 36px;
    height: 36px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--accent);
  }

  .pillar h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
  }

  .pillar p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    background: var(--warm-white);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
  }

  .footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
  }

  .footer-brand .logo em {
    color: var(--accent);
    font-style: italic;
  }

  .footer-brand p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 240px;
  }

  .footer-col h5 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col li {
    margin-bottom: 0.5rem;
  }

  .footer-col a {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col a:hover {
    color: var(--text-dark);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 12px;
    color: var(--text-light);
  }

  .footer-socials {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    font-size: 13px;
  }

  .social-link:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-content>* {
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
  }

  .hero-eyebrow {
    animation-delay: 0.1s;
  }

  .hero-title {
    animation-delay: 0.25s;
  }

  .hero-sub {
    animation-delay: 0.4s;
  }

  .hero-cta {
    animation-delay: 0.55s;
  }

  /* ── TOAST ── */
  .toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(28, 28, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
  }

  .toast.show {
    transform: translateY(0);
    opacity: 1;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .nav-divider {
      display: none;
    }

    .nav-search-wrap {
      max-width: 180px;
    }

    .about-strip section {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .footer-brand {
      grid-column: 1 / -1;
    }

    .hero-title {
      font-size: 3rem;
    }
  }

  @media (max-width: 480px) {
    .footer-top {
      grid-template-columns: 1fr;
    }

    .products-grid {
      grid-template-columns: 1fr;
    }

    .nav-search-wrap {
      max-width: 130px;
    }

    .nav-search-box {
      font-size: 12px;
    }
  }

  /* ── PRODUCT MODAL ── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(28, 28, 26, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

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

  .modal {
    background: var(--warm-white);
    border-radius: 20px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
  }

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

  .modal-img {
    border-radius: 20px 0 0 20px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .modal-actual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
  }

  .modal-img svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
  }

  .modal-content {
    padding: 2rem 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--warm-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: background 0.15s, color 0.15s;
    z-index: 10;
  }

  .modal-close:hover {
    background: var(--cream);
    color: var(--text-dark);
  }

  .modal-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
  }

  .modal-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .modal-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
  }

  .modal-divider {
    height: 1px;
    background: var(--border);
    margin: 0.25rem 0;
  }

  .modal-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
  }

  .modal-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 100px;
    width: fit-content;
  }

  .modal-stock.available {
    color: var(--stock-available);
    background: var(--stock-available-bg);
    border: 1px solid rgba(46, 125, 50, 0.2);
  }

  .modal-stock.oos {
    color: var(--stock-low);
    background: var(--stock-bg);
    border: 1px solid rgba(212, 97, 74, 0.2);
  }

  .modal-stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: blink 1.4s ease-in-out infinite;
  }

  .modal-stock.available .modal-stock-dot {
    background: var(--stock-available);
  }

  .modal-stock.oos .modal-stock-dot {
    background: var(--stock-low);
  }

  @keyframes blink {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.3;
    }
  }

  .modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 0.5rem;
  }

  .modal-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 13px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }

  .modal-wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
  }

  .modal-wa-btn.disabled-btn {
    background: var(--border) !important;
    color: var(--text-light) !important;
    cursor: not-allowed;
    pointer-events: none;
  }

  .modal-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: none;
    color: var(--text-mid);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 11px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .modal-secondary-btn:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
  }

  @media (max-width: 600px) {
    .modal {
      grid-template-columns: 1fr;
    }

    .modal-img {
      border-radius: 20px 20px 0 0;
      min-height: 200px;
    }

    .modal-content {
      padding: 1.5rem;
    }
  }

  /* ── CART DRAWER ── */
  .cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(28, 28, 26, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

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

  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--warm-white);
    z-index: 401;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-left: 1px solid var(--border);
  }

  .cart-overlay.open .cart-drawer {
    transform: translateX(0);
  }

  .cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
  }

  .cart-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .cart-count-badge {
    background: var(--text-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cart-close-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: background 0.15s, color 0.15s;
  }

  .cart-close-btn:hover {
    background: var(--cream);
    color: var(--text-dark);
  }

  .cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-light);
    padding: 3rem 0;
  }

  .cart-empty svg {
    opacity: 0.25;
  }

  .cart-empty p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
  }

  .cart-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
    animation: fadeUp 0.2s ease forwards;
  }

  .cart-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .cart-item-thumb:hover {
    transform: scale(1.05);
  }

  .cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
  }

  .cart-item-thumb svg {
    width: 28px;
    height: 28px;
    opacity: 0.3;
  }

  .cart-item-info {
    flex: 1;
    min-width: 0;
  }

  .cart-item-cat {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
  }

  .cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: color 0.15s;
  }

  .cart-item-name:hover {
    color: var(--accent);
  }

  .cart-item-price {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
  }

  .cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
  }

  .cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: color 0.15s;
    padding: 2px;
  }

  .cart-remove-btn:hover {
    color: var(--stock-low);
  }

  .qty-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 100px;
    overflow: hidden;
    background: var(--warm-white);
  }

  .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    font-size: 16px;
    font-weight: 300;
    transition: background 0.15s, color 0.15s;
  }

  .qty-btn:hover {
    background: var(--cream);
    color: var(--text-dark);
  }

  .qty-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    min-width: 24px;
    text-align: center;
  }

  .cart-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-mid);
  }

  .cart-summary-row.total {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 400;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }

  .cart-wa-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .cart-wa-checkout:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
  }

  .cart-clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    transition: color 0.15s;
    padding: 4px;
  }

  .cart-clear-btn:hover {
    color: var(--stock-low);
  }

  /* navbar badge */
  .cart-nav-badge {
    background: #C4A882;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    vertical-align: middle;
    transition: transform 0.2s;
  }

  /* add to cart feedback */
  @keyframes popIn {
    0% {
      transform: scale(1);
    }

    40% {
      transform: scale(1.35);
    }

    100% {
      transform: scale(1);
    }
  }

  .add-btn.out-of-stock {
    width: auto;
    padding: 0 14px;
    background: var(--bg-main);
    border-color: var(--border);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: not-allowed;
  }

  .modal-wa-btn.disabled-btn {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }

  .add-btn.added {
    animation: popIn 0.3s ease;
    background: var(--text-dark);
    color: #fff;
  }

  /* ── USA SOURCE TAG (above price) ── */
  .product-source {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-mid);
    letter-spacing: 0.03em;
    margin-bottom: 0.65rem;
    padding: 3px 9px 3px 5px;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--cream);
    width: fit-content;
  }

  .product-source .flag {
    font-size: 13px;
    line-height: 1;
  }

  /* ── TRUST SECTION ── */
  .trust-section {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-section section {
    padding: 4.5rem 2rem;
  }

  .trust-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .trust-header .section-label {
    justify-content: center;
    display: flex;
  }

  .trust-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .trust-header h2 em {
    font-style: italic;
    color: var(--accent);
  }

  .trust-header p {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0.75rem auto 0;
    line-height: 1.8;
  }

  .trust-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
  }

  .trust-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }

  .trust-step {
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .trust-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--accent);
    transition: background 0.2s, border-color 0.2s;
  }

  .trust-step:hover .trust-step-num {
    background: var(--accent-light);
    border-color: var(--accent);
  }

  .trust-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .trust-step p {
    font-size: 12.5px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .receipt-note {
    margin-top: 3rem;
    background: var(--accent-light);
    border: 1px solid rgba(196, 168, 130, 0.3);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .receipt-icon {
    width: 48px;
    height: 48px;
    background: var(--warm-white);
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
  }

  .receipt-note-text {
    flex: 1;
  }

  .receipt-note-text strong {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 3px;
  }

  .receipt-note-text p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.7;
  }

  .receipt-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }

  .receipt-wa-btn:hover {
    background: #333;
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    .trust-steps {
      grid-template-columns: 1fr 1fr;
    }

    .trust-steps::before {
      display: none;
    }
  }

  @media (max-width: 480px) {
    .trust-steps {
      grid-template-columns: 1fr;
    }
  }

  /* ── WISHLIST DRAWER ── */
  .wishlist-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: rgba(28, 28, 26, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

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

  .wishlist-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100vw;
    background: var(--warm-white);
    z-index: 401;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border);
  }

  .wishlist-overlay.open .wishlist-drawer {
    transform: translateX(0);
  }

  .wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
  }

  .wishlist-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .nav-wishlist-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-mid);
    transition: color 0.2s;
  }

  .wishlist-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--stock-low);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--warm-white);
  }

  .wishlist-btn {
    border-color: var(--border) !important;
    color: var(--text-mid) !important;
  }

  .wishlist-btn:hover,
  .wishlist-btn.active {
    background: var(--stock-bg) !important;
    border-color: var(--stock-low) !important;
    color: var(--stock-low) !important;
  }

  /* ── DISCOUNT COUPON ── */
  .discount-wrap {
    display: flex;
    gap: 8px;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
  }

  .discount-input {
    flex: 1;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    background: var(--warm-white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .discount-input::placeholder {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
  }

  .discount-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.1);
  }

  .discount-apply-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1.5px solid var(--text-dark);
    background: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }

  .discount-apply-btn:hover {
    background: var(--text-dark);
    color: #fff;
  }

  .discount-msg {
    font-size: 11px;
    margin: 8px 0;
    font-weight: 500;
    min-height: 14px;
  }

  .discount-msg.success {
    color: #16a34a;
  }

  .discount-msg.error {
    color: var(--stock-low);
  }

  .cart-summary-row.discount-row {
    color: #16a34a;
  }

  /* ── COD CHECKOUT MODAL ── */
  .cod-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(28,28,26,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

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

  .cod-modal {
    background: var(--warm-white);
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }

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

  .cod-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    transition: all 0.2s;
  }

  .cod-close:hover {
    background: var(--cream);
    color: var(--text-dark);
  }

  .cod-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
  }

  .cod-modal-sub {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.6;
    margin-top: -0.5rem;
  }

  .cod-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .cod-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
  }

  .cod-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--cream);
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    transition: all 0.2s;
    resize: none;
  }

  .cod-input:focus {
    border-color: var(--accent);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.1);
  }

  .cod-location-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .cod-location-btn {
    padding: 10px 16px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--warm-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .cod-location-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .cod-location-btn.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #fff;
  }

  .brac-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f0fdf4;
    border: 1px solid #22c55e;
    border-radius: 10px;
    color: #166534;
    font-size: 12px;
    line-height: 1.4;
  }

  .brac-tip strong {
    font-weight: 600;
  }

  .cod-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.5rem;
  }

  .cod-submit-btn {
    width: 100%;
    height: 48px;
    background: var(--text-dark);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
  }

  .cod-submit-btn:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .cod-cancel-btn {
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    transition: color 0.15s;
  }

  .cod-cancel-btn:hover {
    color: var(--text-dark);
  }