@import url(‘https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600&family=DM+Sans:wght@300;400;500;600&display=swap’);

/* ─── TOKENS ─── */
:root {
  –honey: #e8960e;
  –honey-lt: #f7c955;
  –honey-dk: #a85f00;
  –dark: #1c0a00;
  –dark-2: #3a1800;
  –mid: #7a3d00;
  –cream: #fff8ed;
  –cream-2: #fdecc8;
  –white: #ffffff;
  –t1: #1c0a00;
  –t2: #6b3a10;
  –t3: #aa7040;
  –fh:
    ‘Cormorant Garamond’,
    Georgia,
    serif;
  –fb:
    ‘DM Sans’,
    sans-serif;
  –pill: 999px;
  –r: 18px;
  –rlg: 28px;
  –sh: 0 8px 40px rgba(30, 10, 0, 0.14);
  –shlg: 0 20px 60px rgba(30, 10, 0, 0.22);
  –ease: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(–fb);
  background: var(–cream);
  color: var(–t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: var(–fb);
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── KEYFRAMES ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes glow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.2);
  }
}

/* ─── NAVBAR ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 800;
  height: 66px;
  background: rgba(28, 10, 0, 0.96);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(232, 150, 14, 0.12);
}
.nav-logo {
  font-family: var(–fh);
  font-size: 1.55rem;
  font-weight: 700;
  color: rgb(238, 238, 18);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 1.3rem;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 3px;
  transition: color var(–ease);
}
.nav-links a::after {
  content: ’’;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(–honey);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(–ease);
}
.nav-links a:hover {
  color: var(–honey-lt);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(–honey);
  color: rgb(237, 237, 77);
  border-radius: var(–pill);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.85rem;
  transition:
    background var(–ease),
    transform var(–ease);
}
.cart-btn:hover {
  background: var(–honey-lt);
  transform: scale(1.04);
}
.cart-btn .badge {
  background: var(–dark);
  color: var(–honey-lt);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 66px);
  background:
    radial-gradient(
      ellipse 52% 62% at 74% 52%,
      rgba(232, 150, 14, 0.18) 0%,
      transparent 64%
    ),
    linear-gradient(148deg, var(–dark) 0%, #4e2000 55%, var(–dark-2) 100%);
  display: flex;
  align-items: center;
  padding: 70px 48px;
  gap: 52px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ’’;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url(“data:image/svg + xml,
    %3Csvgxmlns=‘http://www.w3.org/2000/svg’width=‘56’height=‘48’%3E%3Cpolygonpoints=‘28,
    254,
    1654,
    4428,
    582,
    442,
    16’fill=‘none’stroke=‘rgba(
        232,
        150,
        14,
        0.07
      )’stroke-width=‘1’/%3E%3C/svg%3E”);
  background-size: 56px 48px;
}
.hero::after {
  content: ’’;
  position: absolute;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 201, 85, 0.15) 0%,
    transparent 68%
  );
  top: -120px;
  right: -60px;
  animation: glow 7s ease-in-out infinite;
}
.hero-text {
  flex: 1;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(232, 150, 14, 0.32);
  background: rgba(232, 150, 14, 0.12);
  border-radius: var(–pill);
  padding: 5px 16px;
  color: var(–honey-lt);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(–fh);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(–honey-lt);
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.82;
  max-width: 440px;
  margin-bottom: 34px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-honey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(–honey-lt), var(–honey-dk));
  color: var(–dark);
  padding: 13px 30px;
  border-radius: var(–pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(232, 150, 14, 0.38);
  transition:
    transform var(–ease),
    box-shadow var(–ease);
}
.btn-honey:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(232, 150, 14, 0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(–pill);
  font-weight: 500;
  font-size: 0.9rem;
  transition:
    border-color var(–ease),
    color var(–ease);
}
.btn-outline:hover {
  border-color: var(–honey-lt);
  color: var(–honey-lt);
}
.hero-nums {
  display: flex;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-num {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-num strong {
  font-family: var(–fh);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(–honey-lt);
}
.hero-num span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.44);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.hero-visual {
  flex: 0 0 300px;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.bottle {
  width: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: drip 4s ease-in-out infinite;
}
.bottle img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}
/* empty img placeholder */
.bottle img:not([src]),
.bottle img[src="””"] {
  width: 240px;
  height: 310px;
  border-radius: 24px;
  background: rgba(232, 150, 14, 0.08);
  border: 2px dashed rgba(232, 150, 14, 0.3);
  content: url(“data:image/svg+xml,%3Csvg%20xmlns=‘http://www.w3.org/2000/svg’%20viewBox=‘0%200%201%201’%3E%3C/svg%3E”);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SECTION BASE ─── */
.section {
  padding: 84px 48px;
}
.section.bg-white {
  background: var(–white);
}
.section.bg-cream {
  background: var(–cream);
}
.section.bg-dark {
  background: linear-gradient(148deg, var(–dark) 0%, #3c1a00 100%);
}
.sec-label {
  display: inline-block;
  background: var(–cream-2);
  color: var(–honey-dk);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(–pill);
  margin-bottom: 12px;
}
.sec-label.inv {
  background: rgba(232, 150, 14, 0.16);
  color: var(–honey-lt);
}
.sec-h {
  font-family: var(–fh);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(–t1);
  margin-bottom: 12px;
}
.sec-h.inv {
  color: #fff;
}
.sec-d {
  font-size: 0.96rem;
  color: var(–t2);
  line-height: 1.8;
  max-width: 520px;
}
.sec-d.inv {
  color: rgba(255, 255, 255, 0.62);
}
.sec-head {
  margin-bottom: 50px;
}
.sec-head.c {
  text-align: center;
}
.sec-head.c .sec-d {
  margin: 0 auto;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.prod-card {
  background: var(–white);
  border-radius: var(–rlg);
  overflow: hidden;
  box-shadow: var(–sh);
  border: 1px solid rgba(232, 150, 14, 0.1);
  position: relative;
  transition:
    transform var(–ease),
    box-shadow var(–ease);
}
.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: var(–shlg);
}
.prod-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(–honey-lt), var(–honey-dk));
  color: var(–dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(–pill);
}
.prod-img {
  height: 250px;
  background: linear-gradient(135deg, var(–cream-2), #ffe28040);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.prod-img img {
  max-height: 220px;
  object-fit: contain;
  transition: transform 0.4s;
}
.prod-card:hover .prod-img img {
  transform: scale(1.07);
}
.prod-img::after {
  content: ’’;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(transparent, rgba(255, 248, 237, 0.55));
}
/* show honeypot placeholder when src empty */
.prod-img img:not([src]),
.prod-img img[src="””"] {
  width: 140px;
  height: 190px;
  background: rgba(232, 150, 14, 0.1);
  border: 2px dashed rgba(232, 150, 14, 0.3);
  border-radius: 12px;
  content: url(“data:image/svg+xml,%3Csvg%20xmlns=‘http://www.w3.org/2000/svg’%20viewBox=‘0%200%201%201’%3E%3C/svg%3E”);
}
.prod-body {
  padding: 22px 24px 26px;
}
.prod-tag {
  display: inline-block;
  background: var(–cream-2);
  color: var(–honey-dk);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(–pill);
  margin-bottom: 9px;
}
.prod-name {
  font-family: var(–fh);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(–t1);
  margin-bottom: 6px;
}
.prod-desc {
  font-size: 0.84rem;
  color: var(–t2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.prod-price {
  font-family: var(–fh);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(–dark-2);
  margin-bottom: 16px;
}
.prod-price small {
  font-size: 0.8rem;
  color: var(–t3);
  font-family: var(–fb);
  font-weight: 400;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.qty-wrap {
  display: flex;
  align-items: center;
  background: var(–cream);
  border: 1.5px solid rgba(232, 150, 14, 0.3);
  border-radius: var(–pill);
  overflow: hidden;
}
.q-btn {
  width: 38px;
  height: 38px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(–dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(–ease),
    color var(–ease);
}
.q-btn:hover {
  background: var(–honey);
  color: #fff;
}
.q-num {
  min-width: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(–t1);
}
.q-sub {
  font-size: 0.83rem;
  color: var(–t3);
  font-weight: 500;
}
.q-sub strong {
  color: var(–dark-2);
  font-weight: 700;
}
.add-btn {
  width: 100%;
  background: linear-gradient(135deg, var(–dark), var(–dark-2));
  color: blue;
  border-radius: var(–pill);
  padding: 13px;
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all var(–ease);
}
.add-btn:hover {
  background: linear-gradient(135deg, var(–honey-dk), var(–honey));
  transform: scale(1.02);
}
.add-btn.ok {
  background: linear-gradient(135deg, #1a5c1a, #2a8c2a);
}

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}
.ben {
  background: var(–white);
  border: 1px solid rgba(232, 150, 14, 0.1);
  border-radius: var(–r);
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(–ease),
    box-shadow var(–ease),
    border-color var(–ease);
}
.ben::before {
  content: ’’;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(–honey-lt), var(–honey-dk));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(–ease);
}
.ben:hover {
  transform: translateY(-5px);
  box-shadow: var(–sh);
  border-color: rgba(232, 150, 14, 0.25);
}
.ben:hover::before {
  transform: scaleX(1);
}
.ben-ico {
  font-size: 1.9rem;
  margin-bottom: 11px;
  display: block;
}
.ben-h {
  font-family: var(–fh);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(–t1);
  margin-bottom: 6px;
}
.ben-p {
  font-size: 0.83rem;
  color: var(–t2);
  line-height: 1.7;
}

/* ─── WHY DARK ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.why-pts {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 26px;
}
.why-pt {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 15px 17px;
  transition:
    background var(–ease),
    border-color var(–ease);
}
.why-pt:hover {
  background: rgba(232, 150, 14, 0.09);
  border-color: rgba(232, 150, 14, 0.22);
}
.wp-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.wp-h {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(–honey-lt);
  margin-bottom: 3px;
}
.wp-p {
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}
.why-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.wtile {
  background: rgba(232, 150, 14, 0.1);
  border: 1px solid rgba(232, 150, 14, 0.2);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  transition: background var(–ease);
}
.wtile:hover {
  background: rgba(232, 150, 14, 0.17);
}
.wtile.full {
  grid-column: 1/-1;
}
.wt-n {
  font-family: var(–fh);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(–honey);
}
.wt-d {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 4px;
  line-height: 1.5;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(–honey-dk), var(–dark-2));
  text-align: center;
  padding: 72px 48px;
}
.cta-band h2 {
  font-family: var(–fh);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  display: inline-block;
  background: #fff;
  color: var(–dark-2);
  padding: 14px 38px;
  border-radius: var(–pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform var(–ease),
    box-shadow var(–ease);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

/* ─── FOOTER ─── */
footer {
  background: var(–dark);
  padding: 50px 48px 26px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 36px;
}
.ft-logo {
  font-family: var(–fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(–honey-lt);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
}
.ft-logo span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 1.2rem;
}
.ft-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.44);
  line-height: 1.72;
  margin-bottom: 18px;
}
.ft-socials {
  display: flex;
  gap: 9px;
}
.ft-soc {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    background var(–ease),
    color var(–ease);
}
.ft-soc:hover {
  background: var(–honey);
  color: #fff;
}
.ft-col h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 13px;
}
.ft-col li {
  margin-bottom: 8px;
}
.ft-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.43);
  transition: color var(–ease);
}
.ft-col a:hover {
  color: var(–honey-lt);
}
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-bottom p {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.3);
}
.ft-bottom span {
  color: var(–honey);
}

/* ─── CART DRAWER ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: rgba(16, 4, 0, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(–ease);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  background: var(–white);
  z-index: 1700;
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.22);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cd-head {
  padding: 20px 26px;
  background: var(–dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cd-head h2 {
  font-family: var(–fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(–honey-lt);
}
.cd-close {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(–ease);
}
.cd-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.cd-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
}
.cd-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(–t3);
  text-align: center;
}
.cd-empty .e-ico {
  font-size: 3.5rem;
  opacity: 0.3;
}
.cd-empty p {
  font-size: 0.88rem;
}
.cd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(–cream-2);
}
.cd-item-thumb {
  width: 52px;
  height: 64px;
  object-fit: contain;
  border-radius: 8px;
  background: var(–cream-2);
  flex-shrink: 0;
}
.cd-item-thumb:not([src]),
.cd-item-thumb[src="””"] {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.cd-ico {
  font-size: 2rem;
  flex-shrink: 0;
}
.cd-info {
  flex: 1;
}
.cd-name {
  font-weight: 700;
  font-size: 0.87rem;
  color: var(–t1);
  margin-bottom: 2px;
}
.cd-size {
  font-size: 0.72rem;
  color: var(–t3);
  margin-bottom: 7px;
}
.cd-ctrls {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cd-qb {
  background: var(–cream);
  border: 1px solid rgba(232, 150, 14, 0.22);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(–dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(–ease);
}
.cd-qb:hover {
  background: var(–honey);
  color: #fff;
}
.cd-qn {
  font-weight: 700;
  font-size: 0.86rem;
  min-width: 20px;
  text-align: center;
}
.cd-del {
  color: #bba090;
  font-size: 0.85rem;
  padding: 2px;
  transition: color var(–ease);
}
.cd-del:hover {
  color: #cc3333;
}
.cd-price {
  font-family: var(–fh);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(–dark-2);
  white-space: nowrap;
}
.cd-foot {
  padding: 18px 24px;
  border-top: 1px solid var(–cream-2);
  background: var(–cream);
}
.cd-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.81rem;
  color: var(–t3);
  margin-bottom: 6px;
}
.cd-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1.5px solid rgba(232, 150, 14, 0.22);
  margin-bottom: 16px;
}
.cd-total-lbl {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(–t1);
}
.cd-total-val {
  font-family: var(–fh);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(–dark-2);
}
.cd-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(–honey-lt), var(–honey-dk));
  color: var(–dark);
  border-radius: var(–pill);
  padding: 14px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all var(–ease);
}
.cd-checkout:hover {
  transform: scale(1.02);
  box-shadow: 0 7px 24px rgba(232, 150, 14, 0.42);
}
.cd-clear {
  width: 100%;
  border: 1px solid rgba(180, 80, 0, 0.18);
  border-radius: var(–pill);
  padding: 9px;
  margin-top: 8px;
  font-size: 0.79rem;
  color: var(–t3);
  transition: all var(–ease);
}
.cd-clear:hover {
  border-color: #cc3333;
  color: #cc3333;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(–dark);
  color: #fff;
  padding: 11px 22px;
  border-radius: var(–pill);
  font-size: 0.84rem;
  font-weight: 500;
  border-left: 4px solid var(–honey);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
  z-index: 9999;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s,
    transform 0.28s;
}
.toast.on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav {
    padding: 0 22px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    flex-direction: column;
    padding: 52px 22px;
    text-align: center;
    gap: 32px;
  }
  .hero-sub,
  .hero-btns,
  .hero-nums {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-nums {
    justify-content: center;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section {
    padding: 60px 22px;
  }
  .cta-band {
    padding: 60px 22px;
  }
  footer {
    padding: 40px 22px 22px;
  }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ft-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .cart-drawer {
    width: 100%;
  }
}
