/* ============================================
   ELEVATED COFFEE — Website Styles
   Palette: Espresso #230F07 | Cream #F7F0ED | Blue #E1EDF4 | Brown #4B3228
   ============================================ */

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

:root {
  --espresso:  #230F07;
  --espresso2: #2C1B13;
  --brown:     #4B3228;
  --cream:     #F7F0ED;
  --blue:      #E1EDF4;
  --cream2:    #EDE5DF;
  --text-light: #F7F0ED;
  --text-dark:  #230F07;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
}
.label--light { color: var(--cream2); opacity: 0.7; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--espresso);
  margin-bottom: 24px;
}
.section-title--light { color: var(--cream); }

.section-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--espresso2);
  max-width: 560px;
  margin-bottom: 56px;
  opacity: 0.85;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
}
.btn--dark {
  background: var(--espresso);
  color: var(--cream);
}
.btn--dark:hover { background: var(--brown); }

.btn--light {
  background: var(--cream);
  color: var(--espresso);
}
.btn--light:hover { background: #fff; }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247, 240, 237, 0.5);
}
.btn--outline:hover {
  background: rgba(247, 240, 237, 0.1);
  border-color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--espresso);
}
.btn--cream:hover { background: #fff; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(35, 15, 7, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 240, 237, 0.08);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(247, 240, 237, 0.7);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--cream); }

.nav__cta {
  background: var(--cream) !important;
  color: var(--espresso) !important;
  padding: 9px 20px;
  border-radius: 2px;
  opacity: 1 !important;
}
.nav__cta:hover { background: #fff !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--espresso);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 32px 100px;
}

.hero__bg-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  padding: 20px 0;
}
.hero__bg-watermark img {
  width: 100%;
  opacity: 0.04;
  display: block;
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 240, 237, 0.5);
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.hero__title {
  margin: 0 0 32px;
  line-height: 1;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__logo {
  width: min(600px, 80vw);
  height: auto;
  display: block;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream2);
  margin-bottom: 12px;
  text-align: center;
}

.hero__sub {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(247, 240, 237, 0.5);
  margin-bottom: 48px;
  text-align: center;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247, 240, 237, 0.3);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(247,240,237,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ─── ABOUT ─── */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--espresso2);
  margin-bottom: 20px;
  opacity: 0.85;
}

/* Unified body copy across all sections */
.about__text p,
.product-card p,
.ingredient p,
.cta__sub {
  font-size: 1rem;
  line-height: 1.75;
}

.about__text .btn { margin-top: 16px; }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat {
  background: var(--espresso);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat__num span {
  font-size: 1rem;
  opacity: 0.6;
  margin-left: 2px;
}

.stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 240, 237, 0.5);
}

/* ─── PRODUCTS ─── */
.products {
  padding: 100px 0;
  background: var(--espresso);
}

.products .label,
.products .section-title { text-align: center; width: 100%; display: block; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card--dark  { background: var(--espresso2); }
.product-card--blue  { background: var(--blue); }
.product-card--caramel { background: var(--brown); }

.product-card__can-wrap {
  padding: 40px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 320px;
}

.product-card__can-img {
  width: auto;
  max-width: 220px;
  max-height: 360px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.product-card:hover .product-card__can-img {
  transform: translateY(-8px) scale(1.05);
}

/* ─── CSS CAN ─── */
.can {
  width: 120px;
  height: 200px;
  border-radius: 16px / 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease);
}
.product-card:hover .can { transform: translateY(-8px) scale(1.03); }

.can--dark    { background: linear-gradient(160deg, #2C1B13 0%, #1a0d06 100%); }
.can--blue    { background: linear-gradient(160deg, #E1EDF4 0%, #c8dde9 100%); }
.can--caramel { background: linear-gradient(160deg, #4B3228 0%, #3a261e 100%); }

.can__bg-text {
  position: absolute;
  inset: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  word-break: break-all;
  line-height: 1.6;
  padding: 8px;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}
.can--dark .can__bg-text,
.can--caramel .can__bg-text { color: rgba(247,240,237,0.06); }
.can--blue .can__bg-text    { color: rgba(35,15,7,0.06); }

.can__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 6px;
  text-align: center;
}

.can__pill {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(247,240,237,0.15);
  color: var(--cream);
  padding: 3px 8px;
  border-radius: 20px;
}
.can__pill--dark {
  background: rgba(35,15,7,0.12);
  color: var(--espresso);
}

.can__brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--cream);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
}
.can__brand--dark { color: var(--espresso); }

.can__info {
  font-size: 6px;
  letter-spacing: 0.08em;
  color: rgba(247,240,237,0.5);
  text-transform: uppercase;
}
.can__info--dark { color: rgba(35,15,7,0.45); }

.product-card__details {
  padding: 28px 32px 40px;
  flex: 1;
}

.product-card--dark h3,
.product-card--caramel h3 { color: var(--cream); }
.product-card--blue h3    { color: var(--espresso); }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card--dark p,
.product-card--caramel p { color: rgba(247,240,237,0.65); }
.product-card--blue p    { color: rgba(35,15,7,0.65); }

.product-card p {
  line-height: 1.75;
  margin-bottom: 20px;
}

.product-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card--dark .product-card__tags span,
.product-card--caramel .product-card__tags span {
  background: rgba(247,240,237,0.1);
  color: rgba(247,240,237,0.7);
}
.product-card--blue .product-card__tags span {
  background: rgba(35,15,7,0.08);
  color: rgba(35,15,7,0.6);
}

.product-card__tags span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── INGREDIENTS ─── */
.ingredients {
  padding: 100px 0;
  background: var(--cream2);
}

.ingredients__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ingredient {
  background: var(--cream);
  padding: 48px 36px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ingredient:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(35,15,7,0.12);
}

.ingredient__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.ingredient h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 14px;
}

.ingredient p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--espresso2);
  opacity: 0.75;
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--brown);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee__track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,240,237,0.7);
  padding-right: 40px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── CTA ─── */
.cta {
  padding: 120px 0;
  background: var(--espresso);
}

.cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta__sub {
  font-size: 1rem;
  color: rgba(247,240,237,0.6);
  margin-bottom: 44px;
}

.cta__form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta__form input {
  flex: 1;
  min-width: 240px;
  padding: 14px 20px;
  background: rgba(247,240,237,0.08);
  border: 1px solid rgba(247,240,237,0.2);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.cta__form input::placeholder { color: rgba(247,240,237,0.35); }
.cta__form input:focus { border-color: rgba(247,240,237,0.5); }

.cta__fine {
  font-size: 11px;
  color: rgba(247,240,237,0.3);
  letter-spacing: 0.05em;
}

/* ─── FOOTER ─── */
.footer {
  background: #0f0704;
  padding: 48px 0 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.8;
}

.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(247,240,237,0.4);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--cream); }

.footer__social {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(240, 232, 218, 0.1);
  border-bottom: 1px solid rgba(240, 232, 218, 0.1);
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 232, 218, 0.5);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer__social-link:hover { color: var(--gold); }

.footer__social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(247,240,237,0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom p {
  font-size: 11px;
  color: rgba(247,240,237,0.25);
  letter-spacing: 0.05em;
}

/* ─── RESPONSIVE — TABLET ─── */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .products__grid { grid-template-columns: 1fr; gap: 2px; }
  .ingredients__grid { grid-template-columns: 1fr; gap: 2px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero { padding: calc(var(--nav-h) + 40px) 24px 80px; }
  .hero__logo { width: min(480px, 85vw); }

  .about { padding: 72px 0; }
  .ingredients { padding: 72px 0; }
  .cta { padding: 80px 0; }

  .products__grid { grid-template-columns: 1fr; }
  .product-card__can-wrap { min-height: 260px; }
}

/* ─── RESPONSIVE — MOBILE ─── */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  .container { padding: 0 16px; }

  /* Nav */
  .nav__inner { padding: 0 16px; }
  .nav__logo-img { height: 22px; }

  /* Hero */
  .hero {
    padding: calc(var(--nav-h) + 32px) 16px 72px;
    min-height: 100svh;
  }
  .hero__logo { width: min(320px, 88vw); }
  .hero__eyebrow { font-size: 0.75rem; letter-spacing: 0.15em; }
  .hero__tagline { font-size: 1.1rem; }
  .hero__sub { font-size: 0.875rem; }
  .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero__actions .btn { width: 100%; max-width: 280px; text-align: center; }

  /* About */
  .about { padding: 60px 0; }
  .about__grid { gap: 36px; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 2px; }
  .stat { padding: 24px 20px; }
  .stat__num { font-size: 2rem; }

  /* Section titles */
  .section-title { font-size: 1.75rem; }

  /* Products */
  .products { padding: 60px 0; }
  .products__grid { grid-template-columns: 1fr; }
  .product-card__can-wrap { min-height: 220px; padding: 32px 20px 20px; }
  .product-card__can-img { max-width: 170px; max-height: 280px; }
  .product-card__details { padding: 20px 20px 32px; }
  .product-card h3 { font-size: 1.25rem; }

  /* Ingredients */
  .ingredients { padding: 60px 0; }
  .ingredients__grid { grid-template-columns: 1fr; }
  .ingredient { padding: 32px 24px; }
  .ingredient h3 { font-size: 1.25rem; }

  /* CTA */
  .cta { padding: 72px 0; }
  .cta__form { flex-direction: column; align-items: center; }
  .cta__form input { width: 100%; min-width: unset; }
  .cta__form .btn { width: 100%; }

  /* Footer */
  .footer { padding: 36px 0 24px; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__logo-img { height: 24px; }
  .footer__nav { gap: 16px; flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; gap: 6px; }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── CART BUTTON (NAV) ─── */
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cart-btn:hover { opacity: 0.7; }
.cart-btn svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--brown);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: var(--font-body);
}

/* ─── CART OVERLAY ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ─── CART DRAWER ─── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--espresso);
  color: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -4px 0 40px rgba(0,0,0,0.4);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(247,240,237,0.1);
}
.cart-drawer__header h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  opacity: 0.6;
  padding: 4px;
  transition: opacity 0.2s;
}
.cart-drawer__close:hover { opacity: 1; }
.cart-drawer__close svg { width: 20px; height: 20px; }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  opacity: 0.4;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

/* ─── CART ITEM ─── */
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(247,240,237,0.05);
  border-radius: 10px;
  padding: 12px;
}
.cart-item__img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}
.cart-item__price {
  font-size: 12px;
  opacity: 0.55;
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-item__controls button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(247,240,237,0.2);
  background: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-item__controls button:hover { background: rgba(247,240,237,0.1); }
.cart-item__qty {
  font-size: 13px;
  min-width: 20px;
  text-align: center;
}
.cart-item__remove {
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.3;
  cursor: pointer;
  font-size: 18px;
  padding: 2px 6px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.cart-item__remove:hover { opacity: 0.8; }

/* ─── CART FOOTER ─── */
.cart-drawer__footer {
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(247,240,237,0.1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
}
.cart-checkout {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}
.cart-note {
  text-align: center;
  font-size: 11px;
  opacity: 0.35;
}

/* ─── ADD TO CART BUTTON ─── */
.btn--add-cart {
  margin-top: 14px;
  background: transparent;
  border: 1px solid rgba(247,240,237,0.3);
  color: var(--cream);
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
}
.btn--add-cart:hover {
  background: rgba(247,240,237,0.1);
  border-color: rgba(247,240,237,0.6);
}
.btn--add-cart.added {
  background: var(--brown);
  border-color: var(--brown);
}

@media (max-width: 600px) {
  .cart-drawer { width: 100vw; }
}

/* ─── PRODUCT BUY BUTTONS ─── */
.product-card__buy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.btn--pack {
  background: rgba(74, 50, 40, 0.4);
  border-color: rgba(247,240,237,0.45);
}
.btn--pack:hover {
  background: rgba(74, 50, 40, 0.7);
  border-color: rgba(247,240,237,0.8);
}

/* ─── BLUE CARD BUTTON CONTRAST FIX ─── */
.product-card--blue .btn--add-cart,
.product-card--blue .btn--pack {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}
.product-card--blue .btn--add-cart:hover,
.product-card--blue .btn--pack:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

/* ─── CARAMEL CAN: no shadow ─── */
.product-card--caramel .product-card__can-img {
  filter: none;
}
