/* ================================================
   TS HAIR - PRINCESS SERIES
   ORANGE & WHITE SHOPPING EXPERIENCE
   ================================================ */

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

:root {
  --orange: #FF6A1A;
  --orange-dark: #E1550B;
  --orange-deep: #B8420A;
  --orange-light: #FFEBDD;
  --orange-pale: #FFF7F2;
  --white: #FFFFFF;
  --charcoal: #241C17;
  --charcoal-soft: #3A2E27;
  --text-muted: #8A7A71;
  --border: #F0DFD2;
  --star: #FFB020;
  --success: #2E9E5B;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(184, 66, 10, 0.08);
  --shadow-hover: 0 16px 40px rgba(184, 66, 10, 0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--orange-pale);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo-word { font-family: 'Playfair Display', Georgia, serif; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ================================================
   PROMO / COUNTDOWN TOPBAR
   ================================================ */

.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  flex-wrap: wrap;
  text-align: center;
}

body { padding-top: 132px; }

.promo-countdown {
  display: flex;
  gap: 4px;
  align-items: center;
}

.promo-countdown span {
  background: white;
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 3px 7px;
  border-radius: 5px;
  min-width: 26px;
  text-align: center;
}

.promo-countdown .sep { background: none; color: white; padding: 0; min-width: auto; }

/* ================================================
   HEADER
   ================================================ */

.dynamic-header {
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1180px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 106, 26, 0.16);
  box-shadow: 0 14px 40px rgba(36, 28, 23, 0.12), 0 2px 10px rgba(36, 28, 23, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-header:hover {
  border-color: rgba(255, 106, 26, 0.35);
  box-shadow: 0 16px 46px rgba(36, 28, 23, 0.16), 0 2px 10px rgba(36, 28, 23, 0.06);
}

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

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 106, 26, 0.08);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
  position: relative;
  flex-shrink: 0;
}

.icon-btn:hover { background: var(--orange); color: white; }

.icon-btn.hot::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  background: var(--orange-deep);
  border-radius: 50%;
  border: 1.5px solid white;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px 18px 10px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(255, 106, 26, 0.3);
  flex-shrink: 0;
}

.cart-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

.cart-counter {
  background: var(--charcoal);
  color: white;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-crown {
  color: var(--orange);
  font-size: 1.15rem;
}

.logo-word {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--charcoal);
  line-height: 1;
}

.logo-word span { color: var(--orange); }

.logo-tagline {
  font-size: 0.58rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 3px;
  margin-top: 1px;
}

/* Nav links inside the pill */
.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-center a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--charcoal-soft);
  padding: 9px 16px;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-center a:hover {
  color: var(--orange-dark);
  background: rgba(255, 106, 26, 0.08);
}

.nav-center a.active {
  color: white;
  background: var(--orange);
  box-shadow: 0 4px 14px rgba(255, 106, 26, 0.35);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 106, 26, 0.08);
  color: var(--charcoal);
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(36, 28, 23, 0.5);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer.active { opacity: 1; pointer-events: auto; }

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: white;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mobile-drawer.active .mobile-drawer-panel { transform: translateX(0); }

.mobile-drawer-panel a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
}

.mobile-drawer-close {
  align-self: flex-end;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: var(--charcoal);
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 32px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--orange-dark); }
.breadcrumb .current { color: var(--charcoal); font-weight: 500; }

/* ================================================
   HERO
   ================================================ */

.hero {
  max-width: 1400px;
  margin: 24px auto 0;
  padding: 0 32px;
}

.hero-inner {
  background: linear-gradient(120deg, var(--charcoal) 0%, #4A2E1C 55%, var(--orange-deep) 100%);
  border-radius: 28px;
  padding: 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-inner::before {
  content: '\f521';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22rem;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 106, 26, 0.18);
  border: 1px solid rgba(255, 106, 26, 0.4);
  color: #FFB07A;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero-content h1 {
  color: white;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content h1 em { color: var(--orange); font-style: italic; }

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 46ch;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 26px rgba(255, 106, 26, 0.35);
}

.btn-primary:hover { background: #FF7E38; transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.3s ease;
  margin-left: 0.8rem;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ================================================
   SECTION HEADINGS
   ================================================ */

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4.5rem 32px 0;
}

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

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--charcoal);
}

.section-head .eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-head .view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-head .view-all:hover { color: var(--orange); }

/* ================================================
   PRODUCT GRID + CARD
   ================================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(255, 106, 26, 0.3);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.product-visual {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2.6rem;
  color: white;
}

.cat-styling-tools .product-visual { background: linear-gradient(135deg, #FF8C42, #E1550B); }
.cat-hair-care .product-visual { background: linear-gradient(135deg, #FFA35C, #FF6A1A); }
.cat-accessories .product-visual { background: linear-gradient(135deg, #FFC08A, #FF8C42); }
.cat-wigs .product-visual { background: linear-gradient(135deg, #B8420A, #4A2E1C); }

.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--charcoal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-discount i { color: var(--orange); font-size: 0.6rem; }

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.wishlist-btn:hover, .wishlist-btn.active { color: var(--orange); }
.wishlist-btn.active i { font-weight: 900; }

.product-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-label {
  font-size: 0.68rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--orange-dark);
  font-weight: 600;
}

.product-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.product-meta .stars { color: var(--star); }

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
}

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

.price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange-dark);
}

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

.quick-add {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange-light);
  border: none;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.quick-add:hover { background: var(--orange); color: white; }

.quick-add.added { background: var(--success); color: white; }

/* ================================================
   DISCOUNTS SECTION (tinted band)
   ================================================ */

.deals-band {
  background: linear-gradient(180deg, var(--orange-light) 0%, var(--orange-pale) 100%);
  margin-top: 4.5rem;
  padding: 4rem 0 1rem;
}

.deals-band .section { padding-top: 0; }

/* ================================================
   CATEGORY TILES
   ================================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.category-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.2rem;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,106,26,0.3);
}

.category-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.35s ease;
}

.category-card:hover .category-icon {
  background: var(--orange);
  color: white;
}

.category-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.category-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================
   TRUST BAR
   ================================================ */

.trust-bar {
  max-width: 1400px;
  margin: 4.5rem auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.3rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.trust-item i {
  font-size: 1.3rem;
  color: var(--orange);
  width: 40px;
  height: 40px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.trust-item p { font-size: 0.75rem; color: var(--text-muted); }

/* ================================================
   FILTER BAR (Shop page)
   ================================================ */

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--charcoal-soft);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* ================================================
   PRODUCT DETAIL PAGE
   ================================================ */

.product-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 32px 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-visual {
  aspect-ratio: 1/1;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: white;
  position: sticky;
  top: 150px;
}

.detail-category-pill {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.product-detail h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.3rem;
}

.detail-meta .stars { color: var(--star); }

.detail-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.6rem;
}

.detail-price .current { font-size: 2rem; font-weight: 700; color: var(--orange-dark); }
.detail-price .original { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.detail-price .save { font-size: 0.8rem; background: var(--orange); color: white; padding: 3px 10px; border-radius: 999px; font-weight: 600; }

.product-detail > p.desc {
  color: var(--charcoal-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  margin-bottom: 1.6rem;
}

.quantity-selector button {
  background: none;
  border: none;
  color: var(--orange-dark);
  font-size: 1.1rem;
}

.btn-group { display: flex; gap: 1rem; margin-bottom: 1.5rem; }

.btn-add-cart {
  flex: 1;
  padding: 1.05rem;
  background: var(--orange);
  color: white;
  border: 2px solid var(--orange);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 26px rgba(255,106,26,0.3);
}

.btn-add-cart:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

.btn-wishlist-wide {
  padding: 1.05rem 1.6rem;
  background: white;
  color: var(--charcoal);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-wishlist-wide:hover { border-color: var(--orange); color: var(--orange-dark); }

.added-message { opacity: 0; color: var(--success); font-size: 0.88rem; font-weight: 500; transition: opacity 0.4s ease; }
.added-message.show { opacity: 1; }

.why-list { list-style: none; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.why-list li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--charcoal-soft); margin-bottom: 0.9rem; }
.why-list i { color: var(--orange); }

/* ================================================
   CART PAGE
   ================================================ */

.cart-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 32px 6rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
}

.cart-title { grid-column: 1 / -1; font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }

.cart-items { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; min-height: 260px; }

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 1.4rem;
  align-items: center;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.cart-item-visual {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
}

.cart-item-info h3 { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: var(--orange-dark); font-weight: 600; font-size: 0.9rem; }

.cart-item-controls { display: flex; align-items: center; gap: 1.2rem; margin-top: 0.7rem; }

.quantity-control {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); padding: 0.35rem 0.8rem; border-radius: 999px;
}

.quantity-control button { background: none; border: none; color: var(--orange-dark); font-size: 1rem; }

.remove-item { cursor: pointer; color: var(--text-muted); font-size: 0.8rem; text-decoration: underline; }
.remove-item:hover { color: var(--orange-dark); }

.cart-item-total { font-weight: 700; color: var(--orange-dark); font-size: 1rem; white-space: nowrap; }

.cart-summary {
  background: white; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.8rem; height: fit-content; position: sticky; top: 150px;
}

.summary-row { display: flex; justify-content: space-between; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); color: var(--charcoal-soft); font-size: 0.9rem; }
.summary-row.total { border: none; padding: 0.8rem 0 0; margin: 1rem 0 1.4rem; font-size: 1.2rem; font-weight: 700; color: var(--charcoal); }
.summary-row.total span:last-child { color: var(--orange-dark); }

.btn-checkout {
  width: 100%; padding: 1.1rem; background: var(--orange); color: white; border: none;
  font-size: 0.85rem; letter-spacing: 0.5px; border-radius: 999px; font-weight: 600; transition: all 0.3s ease;
  box-shadow: 0 10px 26px rgba(255,106,26,0.3);
}

.btn-checkout:hover { background: var(--orange-dark); transform: translateY(-2px); }

.promo-input-row { display: flex; gap: 8px; margin-bottom: 1.4rem; }
.promo-input-row input {
  flex: 1; padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: 999px; font-size: 0.85rem; outline: none;
}
.promo-input-row button {
  padding: 0.8rem 1.2rem; border-radius: 999px; border: 1px solid var(--charcoal); background: white; font-size: 0.8rem; font-weight: 600;
}

/* ================================================
   FOOTER - FULL SHOPPING EXPERIENCE
   ================================================ */

.footer {
  margin-top: 5rem;
  background: radial-gradient(circle 900px at 85% 0%, rgba(255, 106, 26, 0.20) 0%, transparent 60%),
              linear-gradient(180deg, #2E241D 0%, var(--charcoal) 100%);
  color: rgba(255,255,255,0.8);
}

.footer-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5.5rem 2rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 24vw, 20rem);
  color: rgba(255, 106, 26, 0.05);
  z-index: 1;
  pointer-events: none;
  line-height: 1;
}

.footer-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.footer-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 106, 26, 0.15);
  border: 1px solid rgba(255, 106, 26, 0.35);
  color: #FFB07A;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}

.footer-stat .stars { color: var(--star); font-size: 0.72rem; letter-spacing: 1px; }

.footer-cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: white;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 1.1rem;
  line-height: 1.25;
}

.footer-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  padding: 1rem 2.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(255,106,26,0.35);
  transition: all 0.3s ease;
}

.footer-cta-btn:hover { background: #FF7E38; transform: translateY(-2px); }

.footer-newsletter {
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
  padding: 3rem 32px;
}

.footer-newsletter-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-newsletter h3 { color: white; font-size: 1.4rem; font-weight: 700; margin-bottom: 0.3rem; }
.footer-newsletter p { color: rgba(255,255,255,0.85); font-size: 0.88rem; }

.newsletter-form { display: flex; gap: 8px; min-width: 320px; flex: 1; max-width: 420px; }

.newsletter-form input {
  flex: 1; padding: 0.9rem 1.2rem; border-radius: 999px; border: none; outline: none; font-size: 0.88rem;
}

.newsletter-form button {
  padding: 0.9rem 1.6rem; border-radius: 999px; border: none; background: var(--charcoal); color: white; font-weight: 600; font-size: 0.85rem;
}

.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 32px 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand .logo-word { color: white; font-size: 1.3rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); border-top-color: rgba(255,255,255,0.15); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 1rem 0 1.4rem; line-height: 1.8; max-width: 32ch; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: all 0.25s ease;
}
.footer-socials a:hover { background: var(--orange); }

.footer-col h4 { color: white; font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 1.3rem; font-weight: 600; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.85rem; transition: all 0.25s ease; }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 0.9rem; }
.footer-contact-item i { color: var(--orange); margin-top: 3px; }

.footer-payments {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.8rem 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.payments-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; }
.payment-icons { display: flex; gap: 12px; font-size: 1.5rem; color: rgba(255,255,255,0.55); }
.payment-icons i:hover { color: white; }

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 32px 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-links { display: flex; gap: 1.6rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: white; }

/* ================================================
   REVEAL ANIMATION
   ================================================ */

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  .dynamic-header { width: 95%; padding: 8px 10px 8px 20px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .product-detail { gap: 2.5rem; }
}

@media (max-width: 860px) {
  .nav-center { display: none; }
  .menu-toggle { display: flex; }
  body { padding-top: 152px; }
  .dynamic-header { top: 60px; }
  .promo-bar { padding: 8px 12px; font-size: 0.72rem; gap: 8px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-visual { position: static; aspect-ratio: 4/3; }
  .cart-section { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 640px) {
  .hero-inner { padding: 3rem 1.8rem; border-radius: 20px; }
  .hero { padding: 0 16px; }
  .section { padding: 3.5rem 16px 0; }
  .breadcrumb { padding: 16px 16px 0; }
  .dynamic-header { padding: 7px 8px 7px 16px; gap: 0.5rem; }
  .logo-word { font-size: 1.05rem; letter-spacing: 1px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-bar { grid-template-columns: 1fr; padding: 0 16px; }
  .footer-main { grid-template-columns: 1fr; padding: 3rem 20px 1rem; }
  .footer-newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-secondary { margin-left: 0; margin-top: 0.8rem; }
  .cart-item { grid-template-columns: 64px 1fr; }
  .cart-item-total { grid-column: 1 / -1; text-align: right; }
  .footer-cta { padding: 4rem 1.5rem 3rem; }
  .footer-watermark { font-size: 12rem; }
}