/* ═══════════════════════════════════════════════════
   BOBA RUSH X — MAIN STYLESHEET
   Theme: Espresso Brown | Boba Red | Pure White
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brown: #2C1A0E;
  --brown-mid: #5C3317;
  --brown-light: #8B5E3C;
  --red: #C0392B;
  --red-dark: #96281B;
  --red-light: #E74C3C;
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --text-dark: #2C1A0E;
  --text-muted: #7a5c44;
  --shadow: 0 8px 32px rgba(44, 26, 14, 0.18);
  --shadow-sm: 0 4px 16px rgba(44, 26, 14, 0.12);
  --radius: 16px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.45);
}

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn-outline-brown {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-outline-brown:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-wide {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--brown);
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.75);
}

.shop-section-animated {
  position: relative;
}

.cute-pearl {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brown-light), var(--brown));
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
  z-index: -1;
  opacity: 0.9;
  animation: floatBobaDecor 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.boba-p1 {
  width: 18px;
  height: 18px;
  top: -30px;
  left: 20%;
  animation-delay: 0s;
}

.boba-p2 {
  width: 28px;
  height: 28px;
  bottom: -5px;
  right: 15%;
  animation-delay: 1.2s;
}

.boba-p3 {
  width: 14px;
  height: 14px;
  top: 40px;
  left: 10%;
  animation-delay: 0.5s;
}

.boba-p4 {
  width: 22px;
  height: 22px;
  top: 5px;
  right: 30%;
  animation-delay: 2.5s;
}

.boba-heart {
  position: absolute;
  font-size: 1.8rem;
  z-index: -1;
  opacity: 0.9;
  animation: floatBobaDecor 3.5s ease-in-out infinite alternate;
  pointer-events: none;
  user-select: none;
}

.heart-1 {
  top: 30px;
  left: 25%;
  animation-delay: 2s;
}

.heart-2 {
  top: 15px;
  right: 28%;
  animation-delay: 0.5s;
  font-size: 1.6rem;
  transform: rotate(15deg);
}

@keyframes floatBobaDecor {
  0% {
    transform: translateY(0) rotate(-10deg);
  }

  100% {
    transform: translateY(-20px) rotate(15deg);
  }
}

.shop-sub-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown-mid);
  max-width: 650px;
  margin-top: 16px;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--brown);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transform: translateY(6px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-right: auto;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.has-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-icon {
  transition: transform var(--transition);
  margin-top: -2px;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: -20px;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(44, 26, 14, 0.15);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  border: 1px solid rgba(44, 26, 14, 0.05);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Small invisible bridge so the menu doesn't disappear when moving mouse to it */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.dropdown-link {
  display: block;
  padding: 12px 24px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.dropdown-link:hover {
  background: var(--cream);
  color: var(--red);
  padding-left: 32px;
}

.cart-btn {
  position: relative;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.cart-count {
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.cart-count.bump {
  transform: scale(1.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hero-scroll-wrapper {
  height: 300vh;
  /* Gives us 3 viewport heights of scrolling to play the animation over */
  position: relative;
}

.hero {
  height: 100vh;
  background: transparent;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  /* Prevent horizontal scrollbars */
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 80px 0 120px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual Side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

/* Hero Cup Image & Animation */
.hero-canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: var(--brown);
}

#heroCanvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Scale up to push the Veo watermark off-screen */
  transform: scale(1.15);
  transform-origin: center center;
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Ensure text is above the canvas */
}

.hero-badge {
  position: absolute;
  top: 20px;
  right: 0;
  background: var(--red);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}

.badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════════
   HERO WAVE ANIMATION
══════════════════════════════════════════ */
.hero-wave {
  position: absolute;
  bottom: -2px;
  /* Pull down slightly to hide seam */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-wave .waves {
  position: relative;
  width: 100%;
  height: 10vh;
  min-height: 80px;
  max-height: 120px;
}

/* Wave Parallax Animation */
.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  background: var(--white);
  padding: 100px 0 80px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(44, 26, 14, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 2px transparent;
  transition: all 0.4s ease;
  pointer-events: none;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(192, 57, 43, 0.15), 0 5px 15px rgba(44, 26, 14, 0.08);
  border-color: rgba(192, 57, 43, 0.3);
  background: #fff;
}

.feature-item:hover::before {
  box-shadow: inset 0 0 0 2px rgba(192, 57, 43, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(192, 57, 43, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-item:hover .feature-icon {
  background: var(--red);
  color: var(--white);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 16px rgba(192, 57, 43, 0.25);
}

.feature-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   SHOP
══════════════════════════════════════════ */
.shop {
  background: var(--cream);
  padding: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 26, 14, 0.08);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.product-img-wrap {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 280px;
  overflow: hidden;
}

.product-img {
  max-height: 240px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.product-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.product-includes li {
  font-size: 0.83rem;
  color: var(--text-dark);
  font-weight: 500;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brown);
}

.price-old {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(192, 57, 43, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.add-to-cart-btn {
  padding: 12px 22px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.add-to-cart-btn.added {
  background: #27ae60;
}

/* Coming soon card */
.coming-soon-card {
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.coming-soon-inner {
  text-align: center;
  padding: 40px;
  color: var(--white);
}

.cs-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.coming-soon-inner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}

.coming-soon-inner p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.coming-soon-inner .btn-outline-brown {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.coming-soon-inner .btn-outline-brown:hover {
  background: var(--red);
  border-color: var(--red);
}

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

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

.about-text .section-title {
  text-align: left;
}

.about-text .section-tag {
  display: inline-block;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--brown);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
}

.about-tag span {
  font-size: 1rem;
}

.about-tag p {
  margin-top: 4px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  background: var(--brown);
  padding: 100px 0;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.12);
}

.form-success {
  display: none;
  text-align: center;
  color: #2ecc71;
  font-weight: 600;
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--brown);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-logo {
  height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--red);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  min-width: 0;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--red);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-success {
  display: none;
  color: #2ecc71;
  font-size: 0.85rem;
  margin-top: 10px;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--red);
}

/* ══════════════════════════════════════════
   SLIDE-OUT CART
══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

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

.cart-header {
  background: var(--brown);
  color: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-header h2 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-close {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--red);
  color: var(--white);
}

.cart-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 24px;
  min-height: 0;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

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

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid rgba(44, 26, 14, 0.08);
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
  flex-shrink: 0;
}

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

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 700;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(44, 26, 14, 0.2);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brown);
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.qty-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  color: rgba(44, 26, 14, 0.4);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: var(--red);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(44, 26, 14, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  margin-top: auto;
  background: var(--white);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown);
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(44, 26, 14, 0.1);
}

#cartTotal {
  font-size: 1.3rem;
  color: var(--red);
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--brown);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 9999;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  border-left: 4px solid var(--red);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    gap: 48px;
  }

  .about-img-wrap {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--brown);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .nav-item-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 16px 0 0 16px;
    background: transparent;
    border: none;
    width: 100%;
  }

  .dropdown-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
  }

  .dropdown-link:hover {
    background: transparent;
    color: var(--white);
    padding-left: 8px;
  }


  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 0 100px;
  }

  .hero-visual {
    height: 280px;
  }

  .hero-orb {
    width: 240px;
    height: 240px;
  }

  .hero-orb::after {
    font-size: 5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    top: 0;
    right: 0;
  }

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

  .about-tag {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.2rem;
  }

  .cart-drawer {
    width: 100vw;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.8rem;
  }
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE (PDP)
══════════════════════════════════════════ */
.pdp-section {
  padding: 80px 0 120px;
  background: var(--cream);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: var(--white);
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pdp-thumbnail {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--white);
}

.pdp-thumbnail:hover,
.pdp-thumbnail.active {
  border-color: var(--brown);
}

.pdp-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Info */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--brown);
}

.pdp-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pdp-reviews span.stars {
  color: var(--orange);
}

.pdp-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pdp-shipping {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
}

.pdp-options-title {
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.pdp-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  cursor: pointer;
}

.pdp-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brown);
  cursor: pointer;
}

.pdp-option span {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.pdp-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(44, 26, 14, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}

.pdp-qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: background var(--transition);
}

.pdp-qty-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.pdp-qty-input {
  width: 40px;
  height: 48px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  -moz-appearance: textfield;
  appearance: textfield;
}

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

.pdp-add-to-cart {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--brown);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.pdp-add-to-cart:hover {
  background: var(--brown-light);
}

.pdp-desc {
  line-height: 1.6;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-top: 16px;
  border-top: 1px solid rgba(44, 26, 14, 0.1);
  padding-top: 24px;
}

.pdp-desc p {
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brown);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-boba {
  width: 100px;
  height: 120px;
  position: relative;
  margin: 0 auto 24px;
  animation: bounceBoba 1.5s ease-in-out infinite;
}

.pb-cup {
  width: 80px;
  height: 100px;
  border: 4px solid var(--white);
  border-top: none;
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  left: 10px;
  overflow: hidden;
}

.pb-tea {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: #C0392B;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.pb-pearls {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 30px;
  display: flex;
  justify-content: space-around;
  padding: 0 8px;
}

.pb-pearls span {
  display: block;
  width: 12px;
  height: 12px;
  background: #2C1A0E;
  border-radius: 50%;
  animation: floatPearl 2s ease-in-out infinite alternate;
}

.pb-pearls span:nth-child(2) {
  animation-delay: 0.3s;
}

.pb-pearls span:nth-child(3) {
  animation-delay: 0.7s;
}

.pb-pearls span:nth-child(4) {
  animation-delay: 0.1s;
}

.pb-straw {
  width: 8px;
  height: 130px;
  background: var(--white);
  position: absolute;
  bottom: 10px;
  left: 55px;
  transform: rotate(15deg);
  border-radius: 4px;
}

@keyframes bounceBoba {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatPearl {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

.preloader-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ══════════════════════════════════════════
   INTERACTIVE CURSOR BOBA
══════════════════════════════════════════ */
.cursor-boba {
  position: fixed;
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 9999;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4a2c17, #1c1009);
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.6), 2px 4px 6px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  animation: bobaFall 1s forwards ease-in;
}

@keyframes bobaFall {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.2);
  }

  20% {
    opacity: 1;
    transform: translate(calc(-50% + var(--tx)), calc(-50% - 20px)) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--tx)), calc(-50% + 150px)) scale(0.8);
  }
}

/* ══════════════════════════════════════════
   NEW E-COMMERCE PDP STYLES (REFINED)
══════════════════════════════════════════ */
.eco-pdp {
  padding: 60px 0 100px;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #111;
}

.eco-pdp-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.eco-pdp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

/* Base sizing - 55% img / 45% text approx */
.eco-gallery {
  width: calc(55% - 30px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.eco-info {
  width: calc(45% - 30px);
  display: flex;
  flex-direction: column;
}

@media(max-width: 900px) {

  .eco-gallery,
  .eco-info {
    width: 100%;
  }
}

.eco-main-img {
  width: 100%;
  /* Remove aspect-ratio to let image dictate height naturally if needed, or use a natural wrapper */
  background: #fff;
}

.eco-main-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.eco-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.eco-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.eco-thumb:hover,
.eco-thumb.active {
  border-color: #000;
}

.eco-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Typography & Info */
.eco-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  margin-bottom: 15px;
  text-transform: none;
  /* Locca uses sentence case mostly */
}

.eco-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
  /* Center like Locca */
}

.eco-title-wrap {
  text-align: center;
  /* Locca centers the title and price */
  margin-bottom: 30px;
}

.eco-stars {
  color: #111;
  font-size: 14px;
  letter-spacing: 2px;
}

.eco-review-count {
  font-size: 14px;
  color: #555;
}

.eco-price {
  font-size: 18px;
  color: #111;
  margin-bottom: 5px;
}

.eco-shipping {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.eco-shipping a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Purchase Options */
.eco-options-label {
  font-size: 14px;
  font-weight: 400;
  color: #111;
  margin-bottom: 15px;
}

.eco-radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.eco-radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #111;
}

.eco-radio-label input[type="radio"] {
  width: 14px;
  height: 14px;
  accent-color: #000;
  margin: 0;
  cursor: pointer;
}

/* Quantity and Add to Cart */
.eco-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.eco-qty-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.eco-qty-label {
  font-size: 14px;
  color: #111;
}

.eco-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  height: 44px;
}

.eco-qty-btn {
  width: 35px;
  height: 100%;
  background: transparent;
  border: none;
  font-size: 18px;
  color: #555;
  cursor: pointer;
}

.eco-qty-input {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  text-align: center;
  font-size: 14px;
  color: #111;
  -moz-appearance: textfield;
}

.eco-add-btn {
  width: 100%;
  height: 46px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.eco-add-btn:hover {
  opacity: 0.8;
}

.eco-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  padding-top: 40px;
}

.eco-description p {
  margin-bottom: 15px;
}

/* ══════════════════════════════════════════
   AUTH — USER BUTTON & DROPDOWN
══════════════════════════════════════════ */
.user-auth-wrapper {
  position: relative;
}

.user-btn {
  position: relative;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.user-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.user-btn.logged-in {
  background: rgba(192, 57, 43, 0.2);
  border-color: rgba(192, 57, 43, 0.4);
}

.user-btn.logged-in:hover {
  background: var(--red);
  border-color: var(--red);
}

.user-btn-label {
  white-space: nowrap;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* User Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(44, 26, 14, 0.2);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  border: 1px solid rgba(44, 26, 14, 0.06);
  overflow: hidden;
  pointer-events: none;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, var(--brown) 0%, #3d2517 100%);
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  text-transform: uppercase;
}

.user-dropdown-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.user-dropdown-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(44, 26, 14, 0.08);
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.user-dropdown-item:hover {
  background: var(--cream);
  color: var(--red);
  padding-left: 26px;
}

.user-dropdown-item svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.user-dropdown-item:hover svg {
  opacity: 1;
}

.user-dropdown-logout {
  color: var(--red);
}

.user-dropdown-logout:hover {
  background: rgba(192, 57, 43, 0.08);
  color: var(--red-dark);
}

/* ══════════════════════════════════════════
   AUTH — MODAL
══════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 26, 14, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 90%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(44, 26, 14, 0.3);
  z-index: 2001;
  padding: 40px 36px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: none;
  color: var(--brown);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

/* Auth Header */
.auth-header {
  text-align: center;
  margin-bottom: 28px;
}

.auth-logo {
  font-size: 2.8rem;
  margin-bottom: 8px;
  animation: auth-bounce 2s ease-in-out infinite;
}

@keyframes auth-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.auth-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Auth Tabs */
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 28px;
}

.auth-tab {
  flex: 1;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.auth-tab.active {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(44, 26, 14, 0.2);
}

.auth-tab:hover:not(.active) {
  color: var(--brown);
}

/* Auth Form Fields */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 6px;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 0 16px;
  transition: all 0.3s ease;
}

.auth-input-wrap:focus-within {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}

.auth-input-wrap svg {
  flex-shrink: 0;
  color: var(--text-muted);
  opacity: 0.6;
  transition: all 0.3s;
}

.auth-input-wrap:focus-within svg {
  color: var(--red);
  opacity: 1;
}

.auth-input-wrap input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
}

.auth-input-wrap input::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.auth-toggle-pw {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.auth-toggle-pw:hover {
  opacity: 1;
}

/* Auth Error */
.auth-error {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(192, 57, 43, 0.08);
  border-radius: 10px;
  padding: 0;
  display: none;
}

.auth-error.show {
  display: block;
  padding: 10px 14px;
  min-height: auto;
}

/* Auth Submit */
.auth-submit {
  margin-top: 4px;
  padding: 16px 32px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  position: relative;
  overflow: hidden;
}

.auth-submit.loading {
  color: transparent;
  pointer-events: none;
}

.auth-submit.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: auth-spin 0.6s linear infinite;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
}

@keyframes auth-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Auth Switch */
.auth-switch {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.auth-switch a {
  color: var(--red);
  font-weight: 700;
  transition: color 0.2s;
}

.auth-switch a:hover {
  color: var(--red-dark);
}

/* Auth Success State */
.auth-success {
  text-align: center;
  padding: 20px 0;
}

.auth-success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  animation: auth-bounce 1.5s ease-in-out infinite;
}

.auth-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.auth-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ══════════════════════════════════════════
   AUTH — RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .user-btn-label {
    display: none;
  }

  .user-btn {
    padding: 8px;
  }

  .auth-modal {
    width: 95%;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .auth-title {
    font-size: 1.35rem;
  }

  .user-dropdown {
    right: -50px;
  }
}

/* ══════════════════════════════════════════
   CART CHECKOUT FORM & ANIMATIONS
══════════════════════════════════════════ */
.cart-shipping-form {
  animation: slideUpFade 0.4s ease forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.checkout-input-group {
  position: relative;
  margin-bottom: 20px;
}

.checkout-input-group input,
.checkout-input-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text, #333);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
}

.checkout-input-group input::placeholder,
.checkout-input-group textarea::placeholder {
  color: transparent;
  /* visually hide, rely on label */
}

/* Floating Label */
.checkout-input-group label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 1rem;
  color: #888;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: var(--background, #fdfaf6);
  padding: 0 4px;
  border-radius: 4px;
  font-weight: 500;
}

/* Focus and Valid states */
.checkout-input-group input:focus,
.checkout-input-group textarea:focus {
  border-color: var(--red, #e74c3c);
  background: transparent;
}

.checkout-input-group input:focus+label,
.checkout-input-group textarea:focus+label,
.checkout-input-group input:not(:placeholder-shown)+label,
.checkout-input-group textarea:not(:placeholder-shown)+label {
  top: -12px;
  left: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red, #e74c3c);
}

.checkout-input-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ══════════════════════════════════════════
   USER AUTH BUTTON (NAVBAR)
══════════════════════════════════════════ */
.user-auth-wrapper {
  position: relative;
  margin-left: 8px;
}

.user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.user-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.user-btn.logged-in {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.3);
}

.user-btn.logged-in:hover {
  background: rgba(231, 76, 60, 0.25);
}

.user-btn svg {
  flex-shrink: 0;
}

.user-btn-label {
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   USER DROPDOWN (LOGGED-IN)
══════════════════════════════════════════ */
.user-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(44, 26, 14, 0.18), 0 0 0 1px rgba(44, 26, 14, 0.06);
  padding: 8px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #e64a19);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.user-dropdown-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.user-dropdown-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(44, 26, 14, 0.08);
  margin: 4px 0;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px;
  border: none;
  background: transparent;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-dropdown-item:hover {
  background: var(--cream);
  color: var(--brown);
}

.user-dropdown-item svg {
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s;
}

.user-dropdown-item:hover svg {
  color: var(--brown);
}

.user-dropdown-logout {
  color: var(--red);
}

.user-dropdown-logout:hover {
  background: rgba(231, 76, 60, 0.08);
  color: var(--red);
}

.user-dropdown-logout svg {
  color: var(--red) !important;
}

/* ══════════════════════════════════════════
   AUTH MODAL — OVERLAY
══════════════════════════════════════════ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════════════
   AUTH MODAL — MAIN
══════════════════════════════════════════ */
.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 420px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(44, 26, 14, 0.25);
  z-index: 10002;
  padding: 40px 36px 36px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--cream);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 2;
}

.auth-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

/* ── Auth Header ── */
.auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-logo {
  font-size: 2.8rem;
  margin-bottom: 8px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.auth-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 4px;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Auth Tabs ── */
.auth-tabs {
  display: flex;
  gap: 4px;
  background: var(--cream);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 28px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: 11px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-tab.active {
  background: var(--white);
  color: var(--brown);
  box-shadow: 0 2px 8px rgba(44, 26, 14, 0.08);
}

.auth-tab:hover:not(.active) {
  color: var(--brown);
}

/* ── Auth Form ── */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
}

.auth-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 2px solid rgba(44, 26, 14, 0.08);
  border-radius: 14px;
  padding: 0 14px;
  transition: all 0.3s ease;
}

.auth-input-wrap:focus-within {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.auth-input-wrap svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.3s;
}

.auth-input-wrap:focus-within svg {
  color: var(--red);
}

.auth-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
}

.auth-input-wrap input::placeholder {
  color: rgba(44, 26, 14, 0.3);
}

.auth-toggle-pw {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
}

.auth-toggle-pw:hover {
  opacity: 1;
}

/* ── Auth Error ── */
.auth-error {
  display: none;
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
  text-align: center;
}

.auth-error.show {
  display: block;
  animation: shake 0.4s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

/* ── Auth Submit Button ── */
.auth-submit {
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.auth-submit.loading {
  pointer-events: none;
  color: transparent !important;
}

.auth-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Auth Switch Link ── */
.auth-switch {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.auth-switch a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

/* ── Auth Success State ── */
.auth-success {
  text-align: center;
  padding: 20px 0;
}

.auth-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.auth-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 8px;
}

.auth-success p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Auth Gate Message (shown when user tries to add to cart without login) ── */
.auth-gate-msg {
  text-align: center;
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.15);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
}

/* ══════════════════════════════════════════
   AUTH RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .user-btn-label {
    display: none;
  }

  .user-btn {
    padding: 8px;
    border-radius: 50%;
  }

  .user-dropdown {
    right: -40px;
    width: 260px;
  }

  .auth-modal {
    padding: 32px 24px 28px;
    border-radius: 20px;
  }

  .auth-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .auth-modal {
    max-width: 96vw;
    padding: 28px 20px 24px;
  }

  .user-dropdown {
    position: fixed;
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  .user-dropdown.show {
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════════
   LOYALTY MODAL & CARD
══════════════════════════════════════════ */
.loyalty-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 26, 14, 0.15);
  background: var(--cream);
}

.loyalty-card-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.loyalty-stamps {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.loyalty-stamp {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  border: 2px dashed rgba(44, 26, 14, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.loyalty-stamp.earned {
  background: var(--red);
  border: 2px solid var(--red);
  opacity: 1;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
  transform: scale(1.1) rotate(-10deg);
}

.loyalty-status-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid rgba(44, 26, 14, 0.05);
}

.loyalty-status-box h3 {
  color: var(--brown);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.loyalty-status-box h3 span {
  color: var(--red);
  font-weight: 800;
  font-size: 1.3rem;
}

.loyalty-status-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-free-kit-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-free-kit-opt:hover {
  background: rgba(231, 76, 60, 0.1);
}

.cart-free-kit-opt input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
}

.cart-free-kit-opt span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
}