/* =========================================
   99HairCare – style.css
   Primary: Pink (#e91e8c / #f06292)
   Font: Playfair Display + DM Sans
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --pink:        #e91e8c;
  --pink-light:  #f06292;
  --pink-pale:   #fce4ec;
  --pink-xpale:  #fff0f7;
  --dark:        #1a1a2e;
  --dark2:       #2d2d44;
  --text:        #3d3d3d;
  --text-light:  #777;
  --white:       #ffffff;
  --beige:       #fdf8f5;
  --border:      #f0dde8;
  --shadow:      0 4px 24px rgba(233, 30, 140, 0.10);
  --shadow-md:   0 8px 40px rgba(233, 30, 140, 0.14);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-light); }

/* ===== CONTAINERS & SECTIONS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 14px; }
.section-sub { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(233, 30, 140, 0.28);
  transition: var(--transition);
}
.btn-primary:hover { background: #c41278; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(233, 30, 140, 0.36); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }
.btn-nav {
  background: var(--pink);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: #c41278; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.logo-99   { color: var(--pink); }
.logo-hair { color: var(--dark); }
.logo-care { color: var(--pink-light); font-style: italic; }
.navbar:not(.scrolled) .logo-hair { color: var(--white); }
.navbar:not(.scrolled) .logo-care { color: rgba(255,255,255,0.75); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover, .nav-link.active { color: var(--pink); background: var(--pink-pale); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { background: rgba(255,255,255,0.15); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 10, 20, 0.78) 0%,
    rgba(180, 10, 100, 0.45) 60%,
    rgba(0,0,0,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--pink-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 28px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: var(--white); line-height: 1.1; }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.72); letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--pink);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 24s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-inner i { font-size: 0.7rem; opacity: 0.7; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== PRODUCTS ===== */
.products-section { background: var(--beige); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-badge.new { background: var(--dark); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(233, 30, 140, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-cart {
  background: var(--white);
  color: var(--pink);
  border-radius: 100px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--pink); color: var(--white); }
.product-info { padding: 22px; }
.product-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 6px;
  display: block;
}
.product-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-info p { font-size: 0.88rem; margin-bottom: 16px; line-height: 1.6; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--pink); }
.stars { color: #f59e0b; font-size: 0.78rem; display: flex; gap: 2px; }

/* Cart Toast */
.cart-toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 3000;
}
.cart-toast i { color: #4caf50; }
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-badge-float {
  position: absolute;
  top: 28px; right: -20px;
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-float strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-badge-float span { font-size: 0.75rem; font-weight: 600; opacity: 0.9; line-height: 1.3; display: block; margin-top: 4px; }
.about-content p { margin-bottom: 18px; }
.about-content .section-label { margin-bottom: 10px; }
.about-content .section-title { margin-bottom: 20px; }
.about-values { display: flex; gap: 24px; flex-wrap: wrap; margin: 28px 0 36px; }
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.value-item i { color: var(--pink); font-size: 1rem; }

/* ===== BENEFITS ===== */
.benefits-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d0a1e 100%);
}
.benefits-section .section-label { background: rgba(233,30,140,0.2); color: var(--pink-light); }
.benefits-section .section-title { color: var(--white); }
.benefits-section .section-sub { color: rgba(255,255,255,0.65); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.benefit-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { background: rgba(233,30,140,0.12); border-color: rgba(233,30,140,0.4); transform: translateY(-4px); }
.benefit-icon {
  width: 64px; height: 64px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233,30,140,0.35);
}
.benefit-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.benefit-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--beige); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-tall { grid-row: span 2; }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: rgba(233, 30, 140, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-size: 1.6rem;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox p { color: rgba(255,255,255,0.7); margin-top: 14px; font-size: 0.9rem; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--pink-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card.featured {
  background: linear-gradient(135deg, #fce4ec 0%, #fff0f7 100%);
  border-color: var(--pink-light);
  box-shadow: var(--shadow);
}
.testimonial-card.featured::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--pink);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-rating { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--pink-pale); }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq-section { background: var(--beige); }
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--pink-light); box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  background: var(--white);
  transition: background 0.2s;
}
.faq-item.open .faq-question { background: var(--pink-xpale); color: var(--pink); }
.faq-icon { font-size: 0.8rem; flex-shrink: 0; transition: transform 0.35s ease; color: var(--pink); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p { padding: 0 24px 20px; font-size: 0.93rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info .section-label { margin-bottom: 10px; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; }
.contact-list li i { color: var(--pink); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.contact-list li a { color: var(--text); font-weight: 500; }
.contact-list li a:hover { color: var(--pink); }
.contact-socials { display: flex; gap: 12px; }
.contact-socials a, .footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-socials a:hover, .footer-socials a:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

.contact-form-wrap {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--dark); letter-spacing: 0.03em; }
.form-group input, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.25s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,140,0.08); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 18px;
  background: #e8f5e9;
  border-radius: 10px;
  color: #2e7d32;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success i { font-size: 1.1rem; }
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.footer-socials a:hover { background: var(--pink); color: var(--white); }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-size: 1rem; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-inner a { color: var(--pink-light); font-weight: 600; }
.footer-bottom-inner a:hover { color: var(--white); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: #c41278; transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-accent { right: 0; bottom: -20px; width: 140px; height: 140px; }
  .about-badge-float { right: 10px; top: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-rows: 200px 240px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 2px; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-links .nav-link { color: var(--dark); width: 100%; padding: 12px 16px; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-tall { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-img-accent, .about-badge-float { display: none; }
  .about-img-main { height: 320px; }
  .cart-toast { right: 16px; left: 16px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats .stat-divider { display: none; }
  .contact-form-wrap { padding: 24px; }
  .faq-question { font-size: 0.9rem; padding: 16px 18px; }
}
