/* ============================================================
   Cologne Connect — Apple-inspired Dark Theme
   Color palette: Black (#000), Dark Gray (#1c1c1e),
   Mid Gray (#2c2c2e), Light Text (#f5f5f7),
   Muted Text (#86868b), Accent White (#fff)
   ============================================================ */

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

:root {
  --bg-primary:    #000000;
  --bg-card:       #1c1c1e;
  --bg-card-hover: #2c2c2e;
  --bg-nav:        rgba(0, 0, 0, 0.85);
  --text-primary:  #f5f5f7;
  --text-muted:    #86868b;
  --text-label:    #adadb0;
  --accent:        #ffffff;
  --border:        #3a3a3c;
  --border-light:  #2c2c2e;
  --cta-bg:        #f5f5f7;
  --cta-text:      #000000;
  --cta-bg-alt:    transparent;
  --cta-text-alt:  #f5f5f7;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --nav-height:    52px;
  --transition:    0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ── Fonts ── */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-price:   'Bebas Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 60px;
}

/* ── NAV ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-height);
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--text-muted);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-label);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.1px;
}

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

.nav-cta {
  font-size: 13px;
  color: var(--text-label);
  text-decoration: none;
  transition: color var(--transition);
}

.nav-cta:hover {
  color: var(--text-primary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}

#mobileMenu {
  display: none;
  flex-direction: column;
  padding: 12px 22px 20px;
  border-top: 1px solid var(--border-light);
  gap: 2px;
}

#mobileMenu.open {
  display: flex;
}
}

/* ── HERO ────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 72px) 32px 72px;
  background: radial-gradient(ellipse 80% 60% at 50% 20%,
              rgba(80,80,80,0.18) 0%, transparent 70%),
              var(--bg-primary);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.12;
  color: var(--text-primary);
  margin: 0 auto 18px;
  max-width: 640px;
  text-align: center;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
}

.hero-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-align: center;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: -0.1px;
}

.btn-primary {
  background: var(--cta-bg);
  color: var(--cta-text);
}

.btn-primary:hover {
  background: #e0e0e0;
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-card);
  border-color: var(--text-muted);
  transform: scale(1.02);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s 1s both;
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

/* ── MARQUEE / BRAND STRIP ───────────────────────────────── */

.brand-strip {
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  background: var(--bg-card);
  margin-top: 28px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── SECTION SHARED ──────────────────────────────────────── */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* ── FEATURED (big single product spotlight) ─────────────── */

.featured-wrap {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.featured-visual {
  background: radial-gradient(ellipse 90% 80% at 50% 40%,
              #252525 0%, #0e0e0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

/* large halo behind the bottle */
.featured-visual::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle,
              rgba(255,255,255,0.055) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ground shadow */
.featured-visual::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: radial-gradient(ellipse,
              rgba(0,0,0,0.65) 0%, transparent 75%);
  filter: blur(10px);
}

.featured-img-placeholder {
  width: 260px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #3a3a3c 0%, #2c2c2e 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7),
              0 0 0 1px rgba(255,255,255,0.04);
}

.featured-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.8))
          drop-shadow(0 6px 12px rgba(0,0,0,0.5));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-wrap:hover .featured-img-placeholder img {
  transform: scale(1.04) translateY(-6px);
}

.placeholder-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.featured-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.featured-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 980px;
  width: fit-content;
}

.featured-name {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--text-primary);
}

.featured-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
}

.featured-price {
  font-family: var(--font-price);
  font-size: 38px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.08em;
}

.featured-price span {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: 8px;
  letter-spacing: 0;
}

.featured-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ── PRODUCT GRID ────────────────────────────────────────── */

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

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.product-card-visual {
  aspect-ratio: 4/5;
  background: radial-gradient(ellipse 80% 70% at 50% 40%,
              #2a2a2a 0%, #141414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* subtle top-centre glow so bottle pops */
.product-card-visual::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle,
              rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* soft ground shadow beneath every bottle */
.product-card-visual::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 14px;
  background: radial-gradient(ellipse,
              rgba(0,0,0,0.55) 0%, transparent 75%);
  filter: blur(6px);
  z-index: 1;
}

.product-card-visual img {
  width: 72%;
  height: 82%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  /* crisp rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* subtle drop shadow so bottle lifts off the bg */
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.7))
          drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.product-card:hover .product-card-visual img {
  transform: scale(1.07) translateY(-4px);
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.8))
          drop-shadow(0 6px 12px rgba(0,0,0,0.5));
}

.product-img-placeholder {
  width: 72%;
  height: 82%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(160deg, #252527 0%, #1c1c1e 60%, #222224 100%);
  overflow: hidden;
}

.product-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.04) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: placeholder-shimmer 2.4s ease-in-out infinite;
}

@keyframes placeholder-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-img-placeholder svg {
  width: 48px;
  opacity: 0.22;
  flex-shrink: 0;
}

.product-img-placeholder span {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.product-card-info {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-family {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.product-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.product-price {
  font-family: var(--font-price);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.06em;
}

.product-price .size {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
  letter-spacing: 0;
}

.add-to-bag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 980px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.add-to-bag:hover {
  background: #3a3a3c;
  border-color: var(--text-muted);
}


/* ── TESTIMONIALS ────────────────────────────────────────── */

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-quote {
  font-size: 15px;
  color: var(--text-label);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── NEWSLETTER ──────────────────────────────────────────── */

.newsletter-section {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-primary) 0%,
              var(--bg-card) 50%, var(--bg-primary) 100%);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 980px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  border-color: var(--text-muted);
}

.newsletter-input.input-error {
  border-color: #ff453a;
  animation: shake 0.35s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

.newsletter-error {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #ff453a;
  margin-top: -4px;
  min-height: 16px;
}

/* ── FOOTER ──────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border-light);
  background: var(--bg-primary);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.footer-brand-name span {
  color: var(--text-muted);
  font-weight: 300;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* ── CART DRAWER ─────────────────────────────────────────── */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 360px;
  max-width: 95vw;
  background: #111111;
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition);
}

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

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

.cart-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.cart-close {
  background: var(--bg-card);
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  line-height: 1;
  transition: all var(--transition);
}

.cart-close:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

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

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
}

.cart-empty-icon {
  font-size: 40px;
  opacity: 0.4;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.cart-item-img {
  width: 56px;
  height: 72px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cart-item-size {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.qty-btn {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.qty-btn:hover {
  background: #3a3a3c;
}

.qty-num {
  font-size: 14px;
  color: var(--text-primary);
  min-width: 16px;
  text-align: center;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.cart-total-row span:last-child,
.cart-item-price {
  font-family: var(--font-price);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.cart-sub-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* ── TOAST ───────────────────────────────────────────────── */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 12px 24px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2000;
  pointer-events: none;
  white-space: nowrap;
}

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

/* ── ANIMATIONS ──────────────────────────────────────────── */

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

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav-cta-desktop {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .featured-inner {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 340px;
    padding: 40px;
  }

  .featured-content {
    padding: 36px 28px;
  }

  .featured-name {
    font-size: 28px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }


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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(28px, 7.5vw, 34px);
  }

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