/* ─── ROOT ─────────────────────────────────── */
:root {
  --primary:   #C9184A;
  --primary-d: #A0122E;
  --accent:    #FF9F1C;
  --accent-d:  #E8880A;
  --white:     #ffffff;
  --off:       #FFFCF8;
  --light:     #FDEEF4;
  --gray:      #F8F4F2;
  --text:      #1A0A0F;
  --muted:     #80646C;
  --border:    #EFD9E4;
  --radius:    14px;
  --shadow:    0 4px 24px rgba(201,24,74,.12);
  --shadow2:   0 8px 40px rgba(0,0,0,.10);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── UTILITY ─────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.1rem; font-weight: 800; margin-bottom: 10px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

.tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  font-size: .75rem; font-weight: 700;
  padding: 5px 16px; border-radius: 999px;
  margin-bottom: 14px; letter-spacing: .8px; text-transform: uppercase;
}
.highlight { color: var(--primary); }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 32px;
  border-radius: 999px; font-size: .95rem;
  font-weight: 600; transition: all .25s; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,24,74,.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-sm { padding: 9px 22px; font-size: .85rem; }
.btn-lg { padding: 16px 44px; font-size: 1.05rem; }

/* ─── NAVBAR ──────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 36px; height: 70px;
}
.logo { font-size: 1.65rem; font-weight: 800; color: var(--text); }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--muted);
  position: relative; padding-bottom: 2px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  border-radius: 2px; transition: width .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all .2s;
}
.icon-btn:hover { background: var(--light); color: var(--primary); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--primary); color: #fff;
  font-size: .65rem; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger { font-size: 1.4rem; color: var(--text); display: none; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 16px 24px; border-top: 1px solid var(--border);
  background: #fff; gap: 4px;
}
.mobile-menu a { padding: 10px 0; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu.open { display: flex; }

/* ─── HERO ──────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: var(--off);
  display: flex; align-items: stretch;
  overflow: hidden;
}
.hero-left {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 80px 60px 80px 80px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: var(--primary); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 6px 18px; border-radius: 999px;
  margin-bottom: 20px; letter-spacing: .8px; text-transform: uppercase;
  width: fit-content;
}
.hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  color: var(--text); margin-bottom: 20px;
}
.hero-left p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 460px; margin-bottom: 36px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.stat span { font-size: .78rem; color: var(--muted); font-weight: 500; }

.hero-right {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

/* Full-bleed banner image */
.hero-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 8s ease;
}
.hero-right:hover .hero-banner-img { transform: scale(1.04); }

/* Left gradient blending into hero background */
.hero-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    var(--off) 0%,
    rgba(255,252,248,.3) 25%,
    transparent 55%
  ),
  linear-gradient(
    to top,
    rgba(26,10,15,.45) 0%,
    transparent 40%
  );
}

/* Promo pill tags at bottom of banner */
.hero-banner-tags {
  position: absolute; bottom: 28px; left: 32px;
  z-index: 2; display: flex; gap: 8px; flex-wrap: wrap;
}
.banner-tag-pill {
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: .4px;
}

/* Floating info card */
.hero-floating {
  position: absolute; z-index: 10;
  background: #fff; border-radius: 14px;
  padding: 12px 18px; box-shadow: var(--shadow2);
  display: flex; align-items: center; gap: 12px;
  font-size: .84rem; font-weight: 600;
}
.hero-floating small { display: block; color: var(--muted); font-weight: 400; font-size: .75rem; }
.hero-floating .hf-icon { font-size: 1.5rem; }
.hf1 { bottom: 28%; left: 8px; animation: float 3s ease-in-out infinite; }
.hf2 { top: 28px; right: 28px; animation: float 3s ease-in-out infinite 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ─── MARQUEE ──────────────────────────────── */
.marquee-wrap { background: var(--primary); color: #fff; overflow: hidden; padding: 15px 0; }
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
  font-size: .88rem; font-weight: 500; letter-spacing: .3px;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── TRENDING LOOKS ────────────────────────── */
.looks-section { background: var(--gray); }
.looks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.look-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  box-shadow: var(--shadow2); cursor: pointer;
  transition: transform .3s;
}
.look-card:hover { transform: scale(1.02); }
.look-card img { height: 100%; object-position: center top; transition: transform .5s; }
.look-card:hover img { transform: scale(1.06); }
.look-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,10,15,.65) 0%, transparent 50%);
}
.look-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; color: #fff;
}
.look-label h4 { font-size: 1rem; font-weight: 700; margin-bottom: 2px; }
.look-label span { font-size: .82rem; opacity: .8; }
.look-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px;
}

/* ─── CATEGORIES ───────────────────────────── */
.categories-section { background: var(--white); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.category-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 4/3;
  box-shadow: var(--shadow2); display: block;
  transition: transform .3s;
}
.category-card:hover { transform: translateY(-6px); }
.category-card img { height: 100%; transition: transform .5s; }
.category-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(201,24,74,.7) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 20px;
}
.cat-overlay h3 { color: #fff; font-size: 1.1rem; font-weight: 700; }
.cat-overlay span { color: rgba(255,255,255,.82); font-size: .82rem; }

/* ─── PRODUCTS ─────────────────────────────── */
.products-section { background: var(--off); }
.products-grid, .shop-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  transition: all .3s; box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: var(--primary); }
.product-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--gray);
}
.product-img img { height: 100%; transition: transform .5s; object-fit: cover; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; z-index: 1;
}
.badge-accent { background: var(--accent); }
.badge-purple { background: #9b59b6; }
.badge-blue { background: #3498db; }
.badge-dark { background: #2d3748; }
.wishlist-btn {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  font-size: 1.1rem; color: var(--muted);
  background: #fff; width: 34px; height: 34px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: all .2s;
}
.wishlist-btn:hover { color: var(--primary); transform: scale(1.1); }
.wishlist-btn.active { color: var(--primary); }
.product-info { padding: 18px; }
.product-info h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.brand { font-size: .8rem; color: var(--muted); margin-bottom: 6px; }
.product-rating { font-size: .82rem; color: var(--accent); margin-bottom: 8px; }
.product-rating small { color: var(--muted); }
.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.price { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.original-price { font-size: .85rem; color: var(--muted); text-decoration: line-through; }
.discount { font-size: .78rem; color: #27ae60; font-weight: 700; }

/* ─── TRY AT HOME ──────────────────────────── */
.try-home-section { background: var(--white); }
.try-home-container { display: flex; align-items: center; gap: 72px; }
.try-home-img {
  flex: 0 0 46%; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow2); position: relative;
}
.try-home-img img { height: 100%; }
.try-img-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: #fff; border-radius: 12px;
  padding: 16px 20px; box-shadow: var(--shadow2);
  display: flex; align-items: center; gap: 14px;
}
.try-img-badge .badge-icon { font-size: 2rem; }
.try-img-badge strong { display: block; font-size: .92rem; }
.try-img-badge small { color: var(--muted); font-size: .78rem; }
.try-home-text { flex: 1; }
.try-home-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; }
.try-home-text p { color: var(--muted); margin-bottom: 28px; line-height: 1.8; }
.try-steps { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.try-steps li { display: flex; align-items: center; gap: 14px; font-size: .94rem; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}

/* ─── TESTIMONIALS ─────────────────────────── */
.testimonials-section { background: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 30px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-img {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--light);
}
.reviewer-img img { height: 100%; }
.reviewer strong { display: block; font-size: .9rem; }
.reviewer small { color: var(--muted); font-size: .78rem; }

/* ─── NEWSLETTER ───────────────────────────── */
.newsletter-section { background: linear-gradient(135deg, var(--primary), var(--primary-d)); padding: 70px 0; }
.newsletter-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-section h2 { font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.newsletter-section p { color: rgba(255,255,255,.8); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 14px 22px; border-radius: 999px;
  border: none; font-size: .95rem;
  min-width: 280px; outline: none; font-family: inherit;
}
.newsletter-form .btn-primary { background: #fff; color: var(--primary); }
.newsletter-form .btn-primary:hover { background: var(--off); box-shadow: 0 4px 16px rgba(0,0,0,.15); }

/* ─── FOOTER ───────────────────────────────── */
.footer { background: #1A0A0F; color: #ccc; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo { color: #fff; font-size: 1.5rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: .88rem; color: #9a8890; line-height: 1.8; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); color: #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; transition: all .2s;
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .88rem; color: #9a8890; transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 24px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: #6b5f63; flex-wrap: wrap; gap: 8px;
}
.powered-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .2px;
  transition: opacity .2s;
}
.powered-link:hover { opacity: .75; text-decoration: underline; }

/* ─── TOAST ────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--primary); color: #fff;
  padding: 13px 26px; border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow2); z-index: 9999;
  opacity: 0; transform: translateY(20px);
  transition: all .35s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ─── SHOP PAGE ─────────────────────────────── */
.shop-hero {
  background: linear-gradient(135deg, var(--light) 0%, var(--off) 100%);
  padding: 64px 24px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.shop-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 8px; }
.shop-hero p { color: var(--muted); margin-bottom: 30px; }
.shop-search {
  display: flex; max-width: 520px; margin: 0 auto;
  background: #fff; border: 2px solid var(--border);
  border-radius: 999px; overflow: hidden; transition: border-color .2s;
}
.shop-search:focus-within { border-color: var(--primary); }
.shop-search input { flex: 1; padding: 14px 22px; border: none; font-size: .95rem; outline: none; font-family: inherit; }
.search-icon-btn { padding: 0 22px; background: var(--primary); color: #fff; display: flex; align-items: center; }

.shop-body { display: flex; gap: 32px; padding: 40px 24px; max-width: 1200px; margin: 0 auto; }
.filters-sidebar {
  width: 248px; flex-shrink: 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; height: fit-content; position: sticky; top: 90px;
}
.filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.filter-header h3 { font-weight: 700; }
.clear-btn { font-size: .8rem; color: var(--primary); cursor: pointer; font-weight: 600; }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; }
.filter-group h4 { font-size: .9rem; font-weight: 700; margin-bottom: 12px; }
.filter-group label { display: flex; align-items: center; gap: 9px; font-size: .87rem; color: var(--muted); cursor: pointer; padding: 4px 0; transition: color .2s; }
.filter-group label:hover { color: var(--primary); }
.filter-group input[type="checkbox"],
.filter-group input[type="radio"] { accent-color: var(--primary); }
.filter-group input[type="range"] { width: 100%; accent-color: var(--primary); margin-bottom: 6px; }
.price-label { font-size: .85rem; color: var(--muted); }

.products-area { flex: 1; }
.products-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.products-toolbar span { font-size: .9rem; color: var(--muted); font-weight: 500; }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.toolbar-right select { padding: 9px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: .88rem; font-family: inherit; outline: none; color: var(--text); }
.view-toggle { display: flex; gap: 4px; }
.view-btn { padding: 8px 11px; border-radius: 8px; font-size: 1rem; color: var(--muted); border: 1px solid var(--border); background: #fff; transition: all .2s; }
.view-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.shop-products-grid.list-view { grid-template-columns: 1fr; }
.shop-products-grid.list-view .product-card { display: flex; }
.shop-products-grid.list-view .product-img { width: 220px; flex-shrink: 0; aspect-ratio: unset; height: auto; }
.shop-products-grid.list-view .product-info { flex: 1; padding: 22px 26px; }

.no-results { text-align: center; padding: 80px 0; }
.no-results-icon { font-size: 3rem; margin-bottom: 16px; }
.no-results h3 { font-size: 1.3rem; margin-bottom: 8px; }
.no-results p { color: var(--muted); margin-bottom: 24px; }

/* ─── ABOUT PAGE ─────────────────────────────── */
.about-hero {
  background: var(--off); padding: 0;
  display: flex; align-items: stretch; min-height: 80vh; overflow: hidden;
}
.about-hero-content {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 80px 60px 80px 80px;
}
.about-hero-content h1 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.about-hero-content p { color: var(--muted); font-size: 1rem; max-width: 480px; margin-bottom: 40px; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-stat { background: #fff; border-radius: 14px; padding: 20px 24px; border: 1px solid var(--border); }
.about-stat h3 { font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.about-stat span { font-size: .82rem; color: var(--muted); }
.about-hero-img { flex: 0 0 45%; position: relative; overflow: hidden; }
.about-hero-img img { width: 100%; height: 100%; object-position: center; }
.about-hero-img::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--off) 0%, transparent 15%);
}

/* ─── MISSION/VISION ───────────────────────── */
.mv-section { background: #fff; }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.mv-card { border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: transform .3s; }
.mv-card:hover { transform: translateY(-5px); }
.mission-card { background: linear-gradient(135deg, #FFF8FA, #FDDDE9); }
.vision-card  { background: linear-gradient(135deg, #FFF8F0, #FFE8CC); }
.values-card  { background: linear-gradient(135deg, #F8F0FF, #EEDEFF); }
.mv-icon { font-size: 2.8rem; margin-bottom: 16px; }
.mv-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.mv-card p { color: var(--muted); font-size: .92rem; }

/* ─── TIMELINE ──────────────────────────────── */
.timeline-section { background: var(--gray); }
.timeline { position: relative; max-width: 820px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute;
  left: 50%; transform: translateX(-50%);
  top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 3px;
}
.timeline-item { display: flex; align-items: center; margin-bottom: 44px; position: relative; }
.tl-content { flex: 1; background: #fff; border-radius: var(--radius); padding: 26px 30px; box-shadow: 0 2px 12px rgba(0,0,0,.07); transition: transform .3s; }
.tl-content:hover { transform: translateY(-3px); }
.tl-empty { flex: 1; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--primary); flex-shrink: 0; z-index: 1; margin: 0 22px; }
.tl-year { font-size: .78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.tl-content h4 { font-weight: 700; margin-bottom: 6px; }
.tl-content p { font-size: .87rem; color: var(--muted); }

/* ─── TEAM ──────────────────────────────────── */
.team-section { background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.team-img { aspect-ratio: 3/4; overflow: hidden; }
.team-img img { height: 100%; object-position: center top; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 20px 22px; text-align: center; }
.team-info h4 { font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.team-bio { font-size: .83rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.team-socials a { width: 32px; height: 32px; border-radius: 50%; background: var(--light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; transition: all .2s; }
.team-socials a:hover { background: var(--primary); color: #fff; }

/* ─── WHY US ────────────────────────────────── */
.why-us-section { background: var(--gray); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: all .3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h4 { font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .85rem; color: var(--muted); }

/* ─── AWARDS ────────────────────────────────── */
.awards-section { background: var(--white); }
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.award-card { border: 2px solid var(--border); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: all .3s; }
.award-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.award-icon { font-size: 2.5rem; margin-bottom: 14px; }
.award-card h4 { font-weight: 700; margin-bottom: 4px; }
.award-card p { font-size: .82rem; color: var(--muted); }

/* ─── ABOUT CTA ─────────────────────────────── */
.about-cta { background: linear-gradient(135deg, var(--primary), var(--primary-d)); padding: 90px 24px; text-align: center; }
.about-cta-container { max-width: 700px; margin: 0 auto; }
.about-cta h2 { font-size: 2.1rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.about-cta p { color: rgba(255,255,255,.85); margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── SCROLL REVEAL ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s cubic-bezier(0.4,0,0.2,1),
              transform .75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

#frameNameDisplay { transition: opacity .35s ease, transform .35s ease; }
#frameNameDisplay.fade-out { opacity: 0; transform: translateY(8px); }

/* ─── ANIMATED SPECS SHOWCASE ─────────────── */
.specs-showcase {
  background: linear-gradient(135deg, #FFF6F9 0%, var(--off) 60%, #F6F0FF 100%);
  padding: 100px 0; overflow: hidden;
}
.specs-showcase-container {
  display: flex; align-items: center; gap: 56px;
}
.specs-info-col { flex: 1; }
.specs-info-col h2 {
  font-size: 2.2rem; font-weight: 800;
  margin-bottom: 14px; line-height: 1.2;
}
.specs-info-col p {
  color: var(--muted); margin-bottom: 28px;
  font-size: .98rem; line-height: 1.85;
  max-width: 420px;
}
.specs-dots {
  display: flex; gap: 8px; margin-bottom: 30px; align-items: center;
}
.sdot {
  height: 6px; width: 8px;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
  transition: width .45s cubic-bezier(0.4,0,0.2,1),
              background .45s ease;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.sdot.active {
  width: 40px;
  background: var(--primary);
}
/* sweeping shimmer that restarts each time a dot becomes active */
.sdot.active::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  height: 100%; width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: sdotShimmer 2.8s linear forwards;
}
@keyframes sdotShimmer {
  from { left: -60%; }
  to   { left: 140%; }
}

/* Stage */
.specs-stage-col { flex: 1; display: flex; justify-content: center; }
.specs-stage {
  position: relative;
  width: 460px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}

/* Glow ring */
.specs-glow-ring {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,24,74,.12) 0%, transparent 70%);
  transition: background .9s ease;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* Glasses element */
.dancing-specs {
  display: flex; align-items: center;
  animation: specsDance 4s ease-in-out infinite;
  position: relative; z-index: 2;
}
@keyframes specsDance {
  0%,100% { transform: translateY(0px) rotate(-1.5deg) scale(1); }
  18%     { transform: translateY(-20px) rotate(2.5deg) scale(1.05); }
  38%     { transform: translateY(-10px) rotate(-2deg) scale(1.02); }
  58%     { transform: translateY(-26px) rotate(2deg) scale(1.06); }
  78%     { transform: translateY(-14px) rotate(-1deg) scale(1.03); }
}

.ds-frame { display: flex; align-items: center; }

.ds-lens {
  width: 130px; height: 95px;
  border: 5px solid #C9184A;
  border-radius: 50%;
  background: rgba(201,24,74,.05);
  box-shadow: 0 0 40px rgba(201,24,74,.3), inset 0 0 24px rgba(201,24,74,.06);
  transition:
    border-radius  1.1s cubic-bezier(0.4,0,0.2,1),
    border-color   .9s ease,
    width          1.1s cubic-bezier(0.4,0,0.2,1),
    height         1.1s cubic-bezier(0.4,0,0.2,1),
    box-shadow     .9s ease,
    background     .9s ease;
}

.ds-bridge {
  width: 44px; height: 0;
  border-top: 5px solid #C9184A;
  flex-shrink: 0;
  transition: border-color .9s ease, width .5s ease;
}

.ds-arm {
  width: 68px; height: 0;
  border-top: 5px solid #C9184A;
  flex-shrink: 0;
  transition: border-color .9s ease;
}
.ds-arm-l { transform: rotate(-12deg); transform-origin: right center; }
.ds-arm-r { transform: rotate(12deg);  transform-origin: left center; }

/* Sparkles orbiting the glasses */
.sparkle {
  position: absolute; border-radius: 50%;
  opacity: 0;
  width: var(--sz, 8px); height: var(--sz, 8px);
  background: var(--cl, #C9184A);
  animation: sparklePop var(--dur, 2s) ease-in-out var(--del, 0s) infinite;
}
.sp1 { --sz:10px; --dur:2.2s; --del:0s;    --cl:#C9184A; top:18%;  left:12%; }
.sp2 { --sz:7px;  --dur:1.8s; --del:.5s;   --cl:#9b59b6; top:8%;   right:18%; }
.sp3 { --sz:13px; --dur:2.6s; --del:.9s;   --cl:#FF9F1C; bottom:22%; left:8%; }
.sp4 { --sz:6px;  --dur:2s;   --del:1.3s;  --cl:#3498db; bottom:14%; right:12%; }
.sp5 { --sz:9px;  --dur:2.4s; --del:.3s;   --cl:#C9184A; top:52%;  left:4%; }
.sp6 { --sz:7px;  --dur:1.9s; --del:1.6s;  --cl:#FF9F1C; top:28%;  right:6%; }
.sp7 { --sz:5px;  --dur:2.1s; --del:.7s;   --cl:#9b59b6; bottom:38%; right:4%; }
.sp8 { --sz:11px; --dur:2.8s; --del:1.1s;  --cl:#3498db; bottom:48%; left:6%; }
@keyframes sparklePop {
  0%,100% { transform: scale(0) rotate(0deg);   opacity: 0; }
  35%     { transform: scale(1.5) rotate(60deg); opacity: 1; }
  65%     { transform: scale(1)   rotate(120deg);opacity: .7; }
}

/* Price tag */
.specs-price-tag {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: #fff; border-radius: 999px;
  padding: 9px 26px; font-size: .85rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  color: var(--primary); white-space: nowrap;
  transition: color .9s ease, transform .3s ease;
}

/* image shine shimmer on product cards */
.product-img::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s ease;
  pointer-events: none;
}
.product-card:hover .product-img::after { transform: translateX(100%); }

/* ─── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .hero-left { padding: 60px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .looks-grid { grid-template-columns: 1fr 1fr; }
  .looks-grid .look-card:last-child { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { flex-direction: column; }
  .hero-left { padding: 56px 24px; text-align: center; }
  .hero-left p { margin: 0 auto 36px; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-right { flex: 0 0 320px; width: 100%; }
  .hero-banner-tags { bottom: 16px; left: 16px; }
  .hf2 { top: 16px; right: 16px; }
  .hf1 { display: none; }
  .try-home-container { flex-direction: column; }
  .about-hero { flex-direction: column; }
  .about-hero-content { padding: 56px 24px; }
  .about-hero-img { flex: 0 0 320px; }
  .timeline::before { left: 24px; }
  .timeline-item { flex-direction: column; align-items: flex-start; padding-left: 58px; }
  .tl-dot { position: absolute; left: 16px; top: 30px; margin: 0; }
  .tl-empty { display: none; }
  .shop-body { flex-direction: column; }
  .filters-sidebar { width: 100%; position: static; }
  .specs-showcase-container { flex-direction: column; }
  .specs-stage { width: 100%; max-width: 380px; height: 240px; }
  .ds-lens { width: 100px; height: 72px; }
  .newsletter-container { flex-direction: column; text-align: center; }
  .newsletter-form { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .looks-grid { grid-template-columns: 1fr; }
  .looks-grid .look-card:last-child { display: block; }
}

@media (max-width: 480px) {
  .hero-left h1 { font-size: 1.9rem; }
  .section-header h2 { font-size: 1.65rem; }
  .products-grid, .shop-products-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .newsletter-form input { min-width: 200px; }
}
