/* =============================================================
   FLOWCASE — MASTER STYLESHEET
   Fixed & Premium Styles
   ============================================================= */

/* =========================
   RESET + GLOBAL FONT LOCK
   ========================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* =========================
   ANNOUNCEMENT BAR - TOP FIXED
   ========================= */
.fc-announcement {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 9999;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.fc-announcement-track {
  display: flex;
  animation: fcAnnounceScroll 25s linear infinite;
  width: max-content;
  align-items: center;
}
.fc-announcement-item {
  white-space: nowrap;
  padding: 0 60px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
}
.fc-announcement-item:hover { opacity: .8; }
.fc-announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: background .2s;
}
.fc-announcement-close:hover { background: rgba(255,255,255,.25); }
.fc-announcement-close i { font-size: 10px; }
@keyframes fcAnnounceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   HEADER - GLASSMORPHISM WITH PROPER ICONS
   ========================= */
.fc-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  height: 72px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}
.fc-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Hamburger */
.fc-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.fc-hamburger i {
  font-size: 20px;
  color: #111;
  font-weight: 300;
}

/* Logo - Proper Size */
.fc-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fc-logo img {
  height: 44px;
  width: auto;
  max-width: 160px;
}

/* Navigation */
.fc-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.fc-nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
.fc-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.fc-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #111;
  transition: width .3s;
}
.fc-nav a:hover::after { width: 100%; }

/* Header Actions */
.fc-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.fc-header-btn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  position: relative;
  border-radius: 50%;
  transition: background .2s;
  cursor: pointer;
}
.fc-header-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}
.fc-header-btn i {
  font-size: 17px;
  font-weight: 300;
}
.fc-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0 4px;
}
.fc-cart-count.visible { display: flex; }

/* Mobile Nav */
.fc-mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: left .35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.fc-mobile-nav.open { left: 0; }
.fc-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.fc-mobile-logo img {
  height: 32px;
  width: auto;
}
.fc-mobile-nav-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #111;
  border-radius: 50%;
  transition: background .2s;
}
.fc-mobile-nav-close:hover { background: #f5f5f5; }
.fc-mobile-nav-close i { font-size: 16px; }
.fc-mobile-menu {
  padding: 0 20px;
}
.fc-mobile-menu li { border-bottom: 1px solid #f5f5f5; }
.fc-mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  transition: color .2s;
}
.fc-mobile-menu a:hover { color: #555; }
.fc-mobile-nav-footer {
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
}
.fc-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  padding: 14px 0;
  transition: color .2s;
}
.fc-mobile-link:hover { color: #111; }
.fc-mobile-link i { font-size: 16px; }
.fc-mobile-link-green {
  color: #1a7f37;
  font-weight: 500;
}
.fc-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fc-nav-overlay.active { opacity: 1; pointer-events: auto; }

/* =========================
   HERO SECTION - CAROUSEL
   ========================= */
.fc-hero-section {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.fc-hero-slider {
  display: flex;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 85vh;
}
.fc-hero-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.fc-hero-slide-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fc-hero-slide-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}
.fc-hero-slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Logo */
.fc-hero-logo {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.fc-hero-logo img {
  height: 48px;
  width: auto;
}

/* Hero Content */
.fc-hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.fc-hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #111;
  margin-bottom: 20px;
}
.fc-hero-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 32px;
}
.fc-hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.fc-btn-primary {
  padding: 16px 32px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all .2s;
}
.fc-btn-primary:hover { background: #333; transform: translateY(-2px); }
.fc-btn-ghost {
  padding: 15px 30px;
  background: transparent;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}
.fc-btn-ghost:hover { border-color: #111; }

/* Hero Stats */
.fc-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
}
.fc-stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}
.fc-stat-number i {
  font-size: 14px;
  color: #f59e0b;
  margin-left: 4px;
}
.fc-stat-label {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* Pagination */
.fc-hero-pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.fc-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.fc-hero-dot.active {
  width: 32px;
  border-radius: 5px;
  background: #111;
}

/* Arrows */
.fc-hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.fc-hero-arrows.left { left: 24px; }
.fc-hero-arrows.right { right: 24px; }
.fc-hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all .2s;
}
.fc-hero-arrow:hover { background: #fff; transform: scale(1.05); }
.fc-hero-arrow i { font-size: 16px; color: #111; font-weight: 300; }

/* =========================
   TICKER
   ========================= */
.fc-ticker {
  background: #111;
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.fc-ticker-track {
  display: inline-flex;
  animation: fcTicker 30s linear infinite;
}
.fc-ticker-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 0 40px;
}
.fc-ticker-track span::before {
  content: "•";
  margin-right: 40px;
  opacity: .5;
}
@keyframes fcTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   RESPONSIVE IMAGES
   ============================================================= */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section Images */
.fc-hero-slide-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}
.fc-hero-slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Logo */
.fc-hero-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.fc-hero-logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
}

/* Model Cards */
.fc-model-card {
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fc-model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.fc-model-card:hover img {
  transform: scale(1.03);
}

/* Product Cards */
.fc-product-card {
  border: 1px solid #eee;
  border-radius: 28px;
  background: #fafafa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
}
.fc-product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.fc-product-image {
  aspect-ratio: 4/5;
  background: #fff;
  border-bottom: 1px dashed #eee;
  overflow: hidden;
  position: relative;
}
.fc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.fc-product-card:hover .fc-product-image img {
  transform: scale(1.04);
}

/* Instagram Grid */
.fc-insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.fc-insta-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}
.fc-insta-item:hover {
  transform: scale(1.03);
}
.fc-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Footer Logo */
.fc-footer-brand .fc-logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
}

/* Mobile Logo */
.fc-mobile-logo img {
  height: 28px;
  width: auto;
  max-width: 150px;
}

/* Desktop Logo */
.fc-logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
}

/* =============================================================
   RESPONSIVE IMAGE BREAKPOINTS
   ============================================================= */
@media (max-width: 1024px) {
  .fc-hero-logo img {
    height: 32px;
  }
  .fc-logo img {
    height: 32px;
  }
}

@media (max-width: 640px) {
  .fc-hero-logo {
    top: 16px;
  }
  .fc-hero-logo img {
    height: 28px;
    max-width: 140px;
  }
  .fc-logo img {
    height: 28px;
    max-width: 120px;
  }
  .fc-footer-brand .fc-logo img {
    height: 28px;
  }
  .fc-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* =========================
   SITE HEADER
   ========================= */
.fc-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #eee;
  height: 64px;
}

.fc-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* HAMBURGER (mobile only) */
.fc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.fc-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #111;
  transition: .3s ease;
}
.fc-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.fc-hamburger.active span:nth-child(2) { opacity: 0; }
.fc-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* LOGO */
.fc-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #111;
  flex-shrink: 0;
}
.fc-logo img { height: 32px; width: auto; }

/* MAIN NAV */
.fc-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-nav ul {
  display: flex;
  gap: 32px;
}
.fc-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  letter-spacing: .02em;
  transition: color .2s;
}
.fc-nav a:hover { color: #555; }
.fc-nav .current-menu-item > a,
.fc-nav .current_page_item > a { color: #111; border-bottom: 1px solid #111; padding-bottom: 2px; }

/* HEADER ACTIONS */
.fc-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.fc-header-btn {
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  position: relative;
}
.fc-header-btn svg { width: 20px; height: 20px; stroke: #111; fill: none; stroke-width: 1.6; }

/* CART COUNT BUBBLE */
.fc-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  width: 16px;
  height: 16px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  display: none;
}
.fc-cart-count.visible { display: flex; }

/* MOBILE NAV DRAWER */
.fc-mobile-nav {
  position: fixed;
  top: 64px;
  left: -100%;
  width: 80%;
  max-width: 340px;
  height: calc(100vh - 64px);
  background: #fff;
  z-index: 899;
  transition: left .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  border-right: 1px solid #eee;
  padding: 24px 20px;
}
.fc-mobile-nav.open { left: 0; }
.fc-mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.fc-mobile-nav li { border-bottom: 1px solid #f0f0f0; }
.fc-mobile-nav a { display: block; padding: 16px 0; font-size: 16px; font-weight: 500; color: #111; }

.fc-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 898;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.fc-nav-overlay.active { opacity: 1; pointer-events: auto; }

/* SIDE CART DRAWER */
.fc-side-cart {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid #eee;
}
.fc-side-cart.open { right: 0; }

.fc-side-cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.fc-side-cart-header h3 { font-size: 16px; font-weight: 600; }
.fc-side-cart-close {
  background: none;
  border: none;
  font-size: 18px;
  color: #777;
  line-height: 1;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.fc-side-cart-close:hover { background: #f5f5f5; color: #111; }

.fc-side-cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.fc-side-cart-empty { text-align: center; padding: 60px 0; color: #777; font-size: 14px; }
.fc-side-cart-empty i { display: block; margin: 0 auto 12px; }

.fc-side-cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}
.fc-side-cart-item img {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
  flex-shrink: 0;
}
.fc-sci-info { flex: 1; }
.fc-sci-info h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.fc-sci-info .meta { font-size: 12px; color: #777; margin-bottom: 8px; }
.fc-sci-price { font-size: 14px; font-weight: 600; }

.fc-side-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}
.fc-side-cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.fc-side-cart-checkout {
  display: block;
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}
.fc-side-cart-view {
  display: block;
  width: 100%;
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  color: #111;
}

/* =========================
   SITE FOOTER
   ========================= */
/* =============================================================
   FOOTER - PROPER COLUMNS WITH SCROLLABLE MOBILE
   ============================================================= */
.fc-footer {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 0 0;
  margin-top: 80px;
}
.fc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.fc-footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

/* Brand Column */
.fc-footer-brand {
  padding-right: 32px;
}
.fc-footer-brand .fc-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.fc-footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.fc-footer-brand p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Social Icons */
.fc-footer-socials {
  display: flex;
  gap: 12px;
}
.fc-social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.fc-social-link:hover {
  background: #fff;
  transform: translateY(-3px);
}
.fc-social-link i {
  font-size: 16px;
  color: #fff;
  transition: color .3s;
}
.fc-social-link:hover i {
  color: #0a0a0a;
}

/* Footer Columns */
.fc-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fc-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-footer-col a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
  transition: color .2s;
}
.fc-footer-col a:hover {
  color: #fff;
}

/* Footer Bottom */
.fc-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}
.fc-footer-bottom-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.fc-payment-methods {
  font-size: 12px;
  color: #555;
}

/* Mobile & Tablet - Scrollable Footer */
@media (max-width: 1024px) {
  .fc-footer-main {
    grid-template-columns: 1fr 1fr;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
    padding-bottom: 24px;
  }
  .fc-footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 640px) {
  .fc-footer {
    padding: 48px 0 0;
  }
  .fc-footer-inner {
    padding: 0 20px;
  }
  .fc-footer-main {
    grid-template-columns: 1fr;
    max-height: none;
    overflow-y: visible;
    gap: 32px;
  }
  .fc-footer-brand {
    text-align: center;
    margin-bottom: 24px;
  }
  .fc-footer-brand p {
    max-width: 100%;
  }
  .fc-footer-socials {
    justify-content: center;
  }
  .fc-footer-col {
    text-align: center;
  }
  .fc-footer-col ul {
    align-items: center;
  }
  .fc-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 0;
  }
  .fc-footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}
.fc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.fc-footer-brand .fc-logo { color: #fff; margin-bottom: 14px; }
.fc-footer-brand p { font-size: 13px; color: #777; line-height: 1.7; max-width: 260px; }
.fc-footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .08em; color: #999; margin-bottom: 16px; text-transform: uppercase; }
.fc-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.fc-footer-col a { font-size: 13px; color: #888; transition: color .2s; }
.fc-footer-col a:hover { color: #fff; }
.fc-footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
}

/* =========================
   HOMEPAGE — HERO
   ========================= */
.fc-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.fc-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}
.fc-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fc-hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #111;
  margin-bottom: 20px;
}
.fc-hero-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}
.fc-hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.fc-btn-primary {
  padding: 15px 32px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .2s;
}
.fc-btn-primary:hover { background: #333; transform: translateY(-1px); }
.fc-btn-ghost {
  padding: 14px 28px;
  background: none;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .2s;
}
.fc-btn-ghost:hover { border-color: #111; }
.fc-hero-visual {
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
}
.fc-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.fc-hero-badge-num { font-size: 22px; font-weight: 700; color: #111; }
.fc-hero-badge-label { font-size: 12px; color: #777; margin-top: 2px; }

/* =========================
   HOMEPAGE — TICKER
   ========================= */
.fc-ticker {
  background: #111;
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.fc-ticker-track {
  display: inline-flex;
  animation: fcTicker 28s linear infinite;
}
.fc-ticker-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 0 40px;
}
.fc-ticker-track span::before {
  content: "•";
  margin-right: 40px;
  opacity: .5;
}
@keyframes fcTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
   NEWSLETTER SECTION
   ========================= */
.fc-section-newsletter {
  padding: 80px 0;
  background: #0a0a0a;
  color: #fff;
}
.fc-newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.fc-newsletter-inner h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.fc-newsletter-inner p {
  font-size: 15px;
  color: #777;
  margin-bottom: 28px;
}
.fc-newsletter-form {
  display: flex;
  gap: 12px;
}
.fc-newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.fc-newsletter-form input:focus {
  border-color: #555;
}
.fc-newsletter-form input::placeholder {
  color: #666;
}
.fc-newsletter-form button {
  padding: 16px 28px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.fc-newsletter-form button:hover {
  background: #e0e0e0;
}

@media (max-width: 640px) {
  .fc-newsletter-form {
    flex-direction: column;
  }
  .fc-newsletter-inner h2 {
    font-size: 24px;
  }
}

/* =========================
   MODELS SECTION
   ========================= */
.fc-models {
  padding: 100px 0;
}
.fc-models-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.fc-section-title {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #111;
}
.fc-section-link {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.fc-section-link:hover {
  color: #111;
}
.fc-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fc-model-card {
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fc-model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fc-model-card:hover img {
  transform: scale(1.05);
}
.fc-model-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff;
}
.fc-model-label h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.fc-model-label span {
  font-size: 13px;
  opacity: .85;
}

/* =========================
   FEATURED PRODUCTS
   ========================= */
.fc-featured {
  padding: 80px 0 100px;
}
.fc-featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.fc-product-card {
  border: 1px solid #eee;
  border-radius: 24px;
  background: #fafafa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
}
.fc-product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.fc-product-image {
  aspect-ratio: 4/5;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.fc-placeholder-img i {
  font-size: 48px;
  color: #ccc;
}
.fc-product-info {
  padding: 16px;
}
.fc-product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}
.fc-product-desc {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}
.fc-price-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fc-price-old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
}
.fc-price-new {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}
.fc-price-off {
  font-size: 11px;
  font-weight: 600;
  color: #1a7f37;
}
.fc-microbadge {
  margin-top: 10px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px dashed #ddd;
  font-size: 11px;
  color: #555;
  background: #fff;
}

/* =========================
   PROMO CARDS
   ========================= */
.fc-section-promo {
  padding: 60px 0;
  background: #fafafa;
}
.fc-section-promo-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-promo-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: transform .3s ease;
  cursor: pointer;
}
.fc-promo-card:hover {
  transform: translateY(-4px);
}
.fc-promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  z-index: 1;
}
.fc-promo-card-bg1 {
  background: linear-gradient(135deg, #ffeef0 0%, #ffd1d9 100%);
}
.fc-promo-card-bg2 {
  background: linear-gradient(135deg, #e8f4ff 0%, #c9e4ff 100%);
}
.fc-promo-card-bg3 {
  background: linear-gradient(135deg, #e8f7ee 0%, #c6f0d9 100%);
}
.fc-promo-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.fc-promo-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(255,255,255,.85);
}
.fc-promo-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.fc-promo-card-link {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-promo-card-link i {
  font-size: 11px;
}

/* =========================
   WHY FLOWCASE
   ========================= */
.fc-why {
  background: #fff;
  padding: 100px 0;
}
.fc-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.fc-why-inner .fc-section-title {
  margin-bottom: 12px;
}
.fc-why-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 60px;
}
.fc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-why-card {
  text-align: left;
  padding: 32px;
  border-radius: 20px;
  background: #fafafa;
  transition: all .3s;
}
.fc-why-card:hover {
  background: #f5f5f5;
  transform: translateY(-4px);
}
.fc-why-icon {
  width: 56px;
  height: 56px;
  background: #111;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fc-why-icon i {
  font-size: 22px;
  color: #fff;
}
.fc-why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}
.fc-why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* =========================
   INSTAGRAM SECTION
   ========================= */
.fc-section-instagram {
  padding: 80px 0;
  background: #fff;
}
.fc-section-instagram-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.fc-section-instagram h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}
.fc-section-instagram p {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}
.fc-insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.fc-insta-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fc-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.fc-insta-item:hover img {
  transform: scale(1.08);
}
.fc-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.fc-insta-item:hover .fc-insta-overlay {
  opacity: 1;
}
.fc-insta-overlay i {
  font-size: 28px;
  color: #fff;
}

/* =========================
   REVIEWS MARQUEE
   ========================= */
.fc-reviews-marquee {
  padding: 80px 0;
  overflow: hidden;
  background: #fafafa;
}
.fc-reviews-marquee-header {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.fc-reviews-track {
  display: flex;
  gap: 20px;
  animation: fcReviews 45s linear infinite;
  width: max-content;
}
.fc-reviews-track:hover {
  animation-play-state: paused;
}
@keyframes fcReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fc-review-card-sm {
  width: 320px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #eee;
}
.fc-review-stars {
  color: #111;
  font-size: 13px;
  margin-bottom: 12px;
}
.fc-review-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
}
.fc-review-author {
  font-size: 12px;
  color: #777;
  font-weight: 500;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */
@media (max-width: 1200px) {
  .fc-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .fc-hero-slide {
    grid-template-columns: 1fr;
  }
  .fc-hero-slide-content {
    padding: 60px 40px;
    order: 2;
  }
  .fc-hero-slide-visual {
    min-height: 350px;
    order: 1;
  }
  .fc-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fc-promo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fc-why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fc-insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .fc-hamburger {
    display: flex !important;
  }
  .fc-nav {
    display: none !important;
  }
  .fc-header-inner {
    padding: 0 16px;
  }
  .fc-logo img {
    height: 36px;
  }
  .fc-hero-section {
    min-height: auto;
  }
  .fc-hero-slider {
    height: auto;
    flex-direction: column;
  }
  .fc-hero-slide {
    grid-template-columns: 1fr;
  }
  .fc-hero-slide-content {
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }
  .fc-hero-title {
    font-size: 32px;
  }
  .fc-hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
  }
  .fc-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fc-btn-primary, .fc-btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .fc-hero-pagination {
    bottom: 16px;
  }
  .fc-hero-arrows {
    display: none;
  }
  .fc-models-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .fc-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .fc-promo-grid {
    grid-template-columns: 1fr;
  }
  .fc-why-grid {
    grid-template-columns: 1fr;
  }
  .fc-insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-section-title {
    font-size: 28px;
  }
}
.fc-models-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.fc-section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #111;
}
.fc-section-link {
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.fc-section-link:hover { color: #111; }
.fc-models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fc-model-card {
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.fc-model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.fc-model-card:hover img { transform: scale(1.03); }
.fc-model-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  color: #fff;
}
.fc-model-label h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.fc-model-label span { font-size: 12px; opacity: .8; }

/* =========================
   HOMEPAGE — FEATURED PRODUCTS
   ========================= */
.fc-featured {
  padding: 0 0 100px;
}
.fc-featured-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   HOMEPAGE — WHY FLOWCASE
   ========================= */
.fc-why {
  background: #fafafa;
  padding: 100px 0;
}
.fc-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.fc-why-inner .fc-section-title { margin-bottom: 12px; }
.fc-why-sub { font-size: 15px; color: #777; margin-bottom: 60px; }
.fc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.fc-why-card { text-align: left; }
.fc-why-icon {
  width: 52px;
  height: 52px;
  background: #111;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fc-why-icon i { font-size: 22px; color: #fff; }
.fc-why-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.fc-why-card p { font-size: 14px; color: #666; line-height: 1.7; }

/* =========================
   HOMEPAGE — REVIEWS MARQUEE
   ========================= */
.fc-reviews-marquee {
  padding: 80px 0;
  overflow: hidden;
}
.fc-reviews-marquee-header {
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.fc-reviews-track {
  display: flex;
  gap: 20px;
  animation: fcReviews 40s linear infinite;
  width: max-content;
}
.fc-reviews-track:hover { animation-play-state: paused; }
@keyframes fcReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fc-review-card-sm {
  width: 300px;
  flex-shrink: 0;
  background: #f9f9f9;
  border-radius: 20px;
  padding: 24px;
}
.fc-review-stars { color: #111; font-size: 12px; margin-bottom: 10px; }
.fc-review-text { font-size: 13px; color: #333; line-height: 1.6; margin-bottom: 14px; }
.fc-review-author { font-size: 12px; color: #777; font-weight: 500; }

/* =========================
   PRODUCT LISTING PAGE (PLP)
   Extracted from shop.html + index.html
   ========================= */
.fc-plp { padding: 60px 0 100px; }
.fc-plp-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-breadcrumbs { font-size: 12px; color: #777; margin-bottom: 24px; }
.fc-breadcrumbs a { color: #777; }
.fc-breadcrumbs a:hover { color: #111; }
.fc-plp-header { margin-bottom: 24px; }
.fc-plp-title h1 { font-size: 32px; font-weight: 500; letter-spacing: -.01em; }
.fc-plp-title p { font-size: 12px; color: #777; margin-top: 6px; }
.fc-plp-controls { margin-bottom: 32px; }
.fc-filters-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.fc-sort-btn {
  padding: 8px 32px 8px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  color: #111;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
}
.fc-sort-btn:focus, .fc-sort-btn:active { outline: none; box-shadow: none; }
.fc-price-filters { display: flex; gap: 8px; }
.fc-price-pill {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 12px;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  color: #111;
}
.fc-price-pill.active { background: #111; color: #fff; border-color: #111; }
.fc-price-pill:focus, .fc-price-pill:active { outline: none; box-shadow: none; }
.fc-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.fc-product-card {
  border: 1px solid #eee;
  border-radius: 28px;
  background: #fafafa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
}
.fc-product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.fc-product-image {
  aspect-ratio: 4/5;
  background: #fff;
  border-bottom: 1px dashed #eee;
  overflow: hidden;
  position: relative;
}
.fc-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fc-product-card:hover .fc-product-image img { transform: scale(1.04); }
.fc-product-info { padding: 14px 16px 16px; }
.fc-product-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: #111; }
.fc-product-desc { font-size: 12px; color: #777; margin-bottom: 8px; line-height: 1.4; }
.fc-price-row { display: flex; gap: 8px; align-items: center; }
.fc-price-old { font-size: 12px; color: #aaa; text-decoration: line-through; }
.fc-price-new { font-size: 15px; font-weight: 600; color: #111; }
.fc-price-off { font-size: 11px; font-weight: 600; color: #1a7f37; }
.fc-microbadge {
  margin-top: 8px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px dashed #ddd;
  font-size: 11px;
  color: #555;
  background: #fff;
}

/* LOAD MORE */
.fc-load-more-wrap { text-align: center; margin-top: 48px; }
.fc-load-more {
  padding: 14px 40px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  color: #111;
  transition: background .2s, border-color .2s;
}
.fc-load-more:hover { background: #111; color: #fff; border-color: #111; }

/* =========================
   PDP HERO
   Extracted exactly from PDPhero.html
   ========================= */
.pdp-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
}
.pdp-images { display: flex; flex-direction: column; gap: 12px; }
.pdp-main-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  position: relative;
}
.pdp-main-image img { width: 100%; height: 100%; object-fit: cover; }
.image-like-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 20px;
}
.pdp-thumbs { display: flex; gap: 10px; overflow-x: auto; }
.pdp-thumbs img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #ddd;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}
.pdp-thumbs img.active, .pdp-thumbs img:hover { border-color: #111; }
.pdp-info { display: flex; flex-direction: column; gap: 22px; color: #111; }
.pdp-title { font-size: 30px; font-weight: 500; letter-spacing: -.01em; }
.pdp-subtitle { font-size: 12px; color: #777; margin-top: 6px; }
.pdp-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #777; }
.pdp-rating .stars { color: #111; }
.pdp-price { display: flex; align-items: center; gap: 10px; }
.pdp-price .old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.pdp-price .new { font-size: 22px; font-weight: 700; transition: color .3s; }
.pdp-price .new.flowrecycle-active { color: #1a7f37; }
.pdp-price .off { font-size: 14px; color: #777; }
.pdp-price .flowrecycle-save { font-size: 13px; color: #1a7f37; font-weight: 500; display: none; }
.pdp-price .flowrecycle-save.visible { display: inline; }
.flowrecycle-box {
  border: 1px dashed #d6e9dd;
  border-radius: 20px;
  padding: 14px;
  background: #f7fbf9;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.flowrecycle-box.active { background: #e8f5ec; border-color: #9bbfae; }
.flowrecycle-box-header { display: flex; justify-content: space-between; align-items: center; }
.flowrecycle-title { font-size: 13px; font-weight: 600; color: #1f3d2b; }
.flowrecycle-desc { font-size: 12px; color: #4f6a5b; margin-top: 4px; }
.flowrecycle-toggle {
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: #ddd;
  position: relative;
  transition: background .3s;
  flex-shrink: 0;
}
.flowrecycle-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: left .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.flowrecycle-box.active .flowrecycle-toggle { background: #1a7f37; }
.flowrecycle-box.active .flowrecycle-toggle::after { left: 21px; }
.variant-qty { display: flex; gap: 12px; align-items: flex-end; }
.variant-box { flex: 1; }
.variant-label { font-size: 12px; color: #777; margin-bottom: 6px; }
.variant-select { position: relative; }
.variant-select select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  color: #111;
  appearance: none;
  cursor: pointer;
  outline: none;
}
.variant-select select:focus { border-color: #111; }
.variant-select::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #777;
  pointer-events: none;
}
.qty-box { width: 120px; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  height: 46px;
}
.qty-btn {
  width: 36px;
  height: 100%;
  border: none;
  background: #fff;
  font-size: 18px;
  color: #111;
  transition: background .2s;
}
.qty-btn:hover { background: #f5f5f5; }
.qty-value { flex: 1; text-align: center; font-size: 14px; font-weight: 500; }
.discount-box { border: 1px solid #ddd; border-radius: 20px; padding: 14px; }
.discount-row { display: flex; gap: 8px; }
.discount-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 13px;
  outline: none;
}
.discount-input:focus { border-color: #111; }
.discount-apply {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  transition: background .2s;
}
.discount-apply:hover { background: #333; }
.discount-input::placeholder { color: #aaa; }
.active-offers { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.offer-pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px dashed #ddd;
  color: #777;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.offer-pill:hover { border-color: #111; color: #111; }
.cta-group { display: flex; gap: 12px; }
.add-cart {
  flex: 1;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #111;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  transition: background .2s, color .2s;
}
.add-cart:hover { background: #111; color: #fff; }
.buy-now {
  flex: 1;
  padding: 15px;
  border-radius: 20px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.buy-now:hover { background: #333; }
.wishlist-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 20px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.wishlist-btn:hover, .wishlist-btn.active { border-color: #d32f2f; color: #d32f2f; }
.pincode-box { border: 1px solid #ddd; border-radius: 20px; padding: 14px; }
.pincode-row { display: flex; gap: 8px; }
.pincode-row input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 13px;
  outline: none;
}
.pincode-row input:focus { border-color: #111; }
.pincode-row button {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  color: #111;
  transition: border-color .2s;
}
.pincode-row button:hover { border-color: #111; }
.delivery-status { font-size: 12px; color: #777; margin-top: 8px; }
.share-btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 66px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 18px;
  z-index: 5;
}

/* =========================
   PDP FEATURE BADGES
   Extracted from featuresbedges.html
   ========================= */
.pdp-badges { padding: 40px 0; }
.badge-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.badge-row { display: flex; gap: 20px; }
.badge {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 16px;
  text-align: center;
  font-size: 12px;
  color: #777;
  background: #fff;
}
.badge-icon {
  width: 24px;
  height: 24px;
  background: #e6e6e6;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg { width: 14px; height: 14px; stroke: #555; fill: none; stroke-width: 1.8; }

/* =========================
   PDP TRUST BADGES STRIP
   Extracted from sepratingbedge.html
   ========================= */
.flow-badges { border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.flow-badges-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.flow-badge { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.flow-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f5f5f5;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.flow-badge-icon svg { width: 22px; height: 22px; stroke: #111; fill: none; stroke-width: 2; }
.flow-badge-text { font-size: 16px; line-height: 1.3; }
.flow-badge-text span { font-size: 18px; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
  z-index: 99;
}
.overlay.active { opacity: 1; pointer-events: auto; }
.bottom-sheet {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  background: #fff;
  border-radius: 24px 24px 0 0;
  transition: .45s cubic-bezier(.4,0,.2,1);
  z-index: 100;
  max-height: 92vh;
  overflow-y: auto;
}
.bottom-sheet.active { bottom: 0; }
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #eee;
}
.sheet-header h3 { font-size: 18px; font-weight: 500; }
.sheet-close { font-size: 22px; cursor: pointer; background: none; border: none; color: #777; }
.sheet-body { padding: 22px; }
.section-title { font-size: 16px; font-weight: 600; margin: 26px 0 14px; }
.step-cards { display: flex; flex-direction: column; gap: 22px; }
.step-card { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: flex-start; }
.step-index {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}
.step-content { font-size: 14px; line-height: 1.55; color: #333; }
.step-title { font-weight: 600; margin-bottom: 4px; }

/* =========================
   PDP PROMO SLIDER
   Extracted from sepratorsection.html
   ========================= */
.pdp-promo-section { padding: 16px; display: flex; justify-content: center; }
.promo-slider { overflow: hidden; border-radius: 16px; position: relative; width: 100%; max-width: 100%; }
.promo-track { display: flex; transition: transform .35s ease; will-change: transform; }
.promo-card {
  min-width: 100%;
  height: 120px;
  padding: 16px;
  display: flex;
  align-items: center;
  border-radius: 16px;
}
.promo-bg1 { background: linear-gradient(135deg, #ffe3e6, #ffd1d9); }
.promo-bg2 { background: linear-gradient(135deg, #e6f0ff, #dbe7ff); }
.promo-bg3 { background: linear-gradient(135deg, #e7f7ee, #d6f0e1); }
.promo-card-content { display: flex; flex-direction: column; gap: 6px; }
.promo-eyebrow { font-size: 12px; color: #666; }
.promo-title { font-size: 16px; font-weight: 600; line-height: 1.25; }
.promo-cta { font-size: 14px; font-weight: 500; color: #2874f0; }
.promo-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.promo-dot {
  width: 6px;
  height: 6px;
  background: #d6d6d6;
  border-radius: 50%;
  overflow: hidden;
  transition: width .25s ease;
}
.promo-dot.active { width: 28px; border-radius: 6px; }
.promo-dot-fill { height: 100%; width: 0%; background: #2874f0; }

/* =========================
   PDP PRODUCT DESCRIPTION TABS
   Extracted from product_discription.html
   ========================= */
.pdp-desc { padding: 80px 0; }
.desc-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.desc-title { font-size: 22px; font-weight: 500; margin-bottom: 20px; color: #111; }
.desc-tabs { display: flex; gap: 24px; border-bottom: 1px solid #ddd; margin-bottom: 20px; overflow-x: auto; }
.desc-tabs::-webkit-scrollbar { display: none; }
.desc-tab { font-size: 14px; color: #777; padding-bottom: 12px; cursor: pointer; white-space: nowrap; }
.desc-tab.active { color: #111; border-bottom: 2px solid #111; }
.desc-box { border: 1px solid #ddd; border-radius: 20px; padding: 24px; }
.desc-content { display: none; }
.desc-content.active { display: block; }
.desc-content p { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.desc-list { display: flex; flex-direction: column; gap: 10px; }
.desc-list div { font-size: 14px; color: #555; display: flex; align-items: flex-start; gap: 8px; }
.desc-list div::before { content: "—"; color: #aaa; flex-shrink: 0; }

/* =========================
   PDP FEATURE TABS SECTION
   Extracted from PDP_sec.html
   ========================= */
.pdp-features { padding: 80px 0; background: #fff; }
.pdp-features-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.pdp-features-header { margin-bottom: 32px; }
.pdp-features-header h2 { font-size: 26px; font-weight: 600; color: #111; }
.pdp-features-header p { margin-top: 6px; font-size: 14px; color: #666; }
.features-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.feature-tabs { display: flex; flex-direction: column; gap: 8px; }
.feature-tab {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  cursor: pointer;
  color: #333;
  background: #f6f6f6;
  transition: background .2s, color .2s;
}
.feature-tab.active { background: #111; color: #fff; }
.feature-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 18px;
  touch-action: pan-y;
}
.feature-track { display: flex; will-change: transform; }
.feature-slide { min-width: 100%; aspect-ratio: 4/3; background: #f2f2f2; }
.feature-slide img, .feature-slide video { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.feature-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ccc;
  overflow: hidden;
  transition: width .25s;
}
.feature-dot span { display: block; height: 100%; width: 0%; background: #111; }
.feature-dot.active { width: 24px; }
.feature-title { font-size: 20px; font-weight: 600; margin: 16px 0 8px; color: #111; }
.feature-desc { font-size: 15px; color: #555; line-height: 1.6; }
.feature-btn {
  margin-top: 18px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 14px;
  transition: background .2s;
}
.feature-btn:hover { background: #333; }

/* =========================
   PDP LIFESTYLE SECTION
   Extracted from lifestyle.html
   ========================= */
.pdp-story { padding: 80px 0; }
.story-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.story-carousel { position: relative; overflow: hidden; border-radius: 24px; }
.story-track { display: flex; transition: transform .4s ease; }
.story-slide {
  min-width: 100%;
  aspect-ratio: 4/3;
  background: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #888;
}
.story-slide img { width: 100%; height: 100%; object-fit: cover; }
.story-dots { display: flex; gap: 8px; margin-top: 14px; justify-content: center; }
.story-dot { width: 6px; height: 6px; border-radius: 50%; background: #ddd; cursor: pointer; }
.story-dot.active { background: #111; }
.story-text { max-width: 420px; }
.story-title { font-size: 22px; font-weight: 500; margin-bottom: 12px; color: #111; }
.story-desc { font-size: 14px; color: #777; line-height: 1.6; display: none; }
.story-desc.active { display: block; }

/* =========================
   PDP BUILT FOR IPHONE
   Extracted from buildforapple.html
   ========================= */
.pdp-built-iphone { padding: 80px 0; }
.built-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.built-stack { position: relative; height: 360px; }
.stack-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 300px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #777;
  border: 1px solid #ddd;
  background: #fafafa;
}
.stack-layer.phone { top: 0; }
.stack-layer.case { top: 24px; background: #fff; border-color: #111; color: #111; }
.built-eyebrow { font-size: 12px; color: #777; letter-spacing: .08em; display: block; }
.built-title { font-size: 32px; font-weight: 500; color: #111; margin: 10px 0 28px; }
.built-points { list-style: none; display: flex; flex-direction: column; gap: 18px; padding: 0; margin: 0; }
.built-points li strong { display: block; font-size: 14px; font-weight: 500; color: #111; }
.built-points li span { font-size: 14px; color: #777; }

/* =========================
   PDP FLOWRECYCLE SECTION
   Extracted from flowcycle.html
   ========================= */
.flowrecycle-count {
  padding: 120px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: background .5s ease;
}
.flowrecycle-count.active { background: #f3f7f4; }
.flow-leaves { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0; transition: opacity .5s ease; }
.flowrecycle-count.active .flow-leaves { opacity: 1; }
.leaf { position: absolute; font-size: 22px; opacity: .22; animation: leafFloat 7s ease-in-out infinite; }
.leaf.sm { font-size: 16px; opacity: .16; }
.leaf.md { font-size: 22px; opacity: .22; }
.leaf.lg { font-size: 28px; opacity: .28; }
@keyframes leafFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
.flowcount-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; text-align: center; position: relative; z-index: 2; }
.flowcount-eyebrow { font-size: 22px; font-weight: 500; color: #1f3d2b; margin-bottom: 18px; }
#recycleCount { font-size: 56px; font-weight: 600; color: #1f3d2b; }
.flowcount-label { display: block; margin-top: 8px; font-size: 14px; color: #6b8a73; }
.flowcount-sub { font-size: 14px; color: #4f6a5b; max-width: 520px; margin: 12px auto 0; }
.flowcount-more { color: #1f3d2b; text-decoration: underline; }
.flowcount-action { margin-top: 36px; }
.flowcount-btn {
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid #9bbfae;
  background: #e6f1ea;
  color: #1f3d2b;
  font-size: 14px;
  cursor: pointer;
  transition: .3s ease;
}
.flowcount-btn.active { background: #cfe6da; border-color: #cfe6da; }
.flowcount-impact { margin-top: 16px; font-size: 13px; color: #4f6a5b; }

/* =========================
   PDP REVIEWS SECTION
   ========================= */
.pdp-reviews { padding: 80px 0; }
.pdp-reviews-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.pdp-reviews-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.pdp-rating-summary { display: flex; align-items: center; gap: 24px; }
.pdp-rating-big { font-size: 64px; font-weight: 700; line-height: 1; color: #111; }
.pdp-rating-details { display: flex; flex-direction: column; gap: 4px; }
.pdp-rating-stars { font-size: 20px; color: #111; letter-spacing: 2px; }
.pdp-rating-count { font-size: 13px; color: #777; }
.pdp-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pdp-review-card { background: #f9f9f9; border-radius: 20px; padding: 24px; }
.pdp-review-stars { font-size: 13px; color: #111; margin-bottom: 10px; letter-spacing: 2px; }
.pdp-review-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: #111; }
.pdp-review-text { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 14px; }
.pdp-review-author { font-size: 12px; color: #999; display: flex; justify-content: space-between; }
.pdp-review-date { font-size: 12px; color: #bbb; }

/* =========================
   PDP YOU MAY ALSO LIKE
   Extracted from youmayalsolike.html
   ========================= */
.pdp-reco { padding: 72px 0; background: #fff; }
.pdp-reco-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.pdp-reco-header { margin-bottom: 28px; }
.pdp-reco-header h2 { font-size: 24px; font-weight: 600; color: #111; }
.pdp-reco-header p { margin-top: 6px; font-size: 14px; color: #666; }
.pdp-reco-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pdp-reco-card { display: flex; flex-direction: column; cursor: pointer; }
.pdp-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: #f2f2f2;
  border-radius: 16px;
  overflow: hidden;
}
.pdp-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pdp-reco-card:hover .pdp-card-img img { transform: scale(1.04); }
.pdp-card-info { margin-top: 12px; }
.pdp-card-title { font-size: 14px; color: #111; margin-bottom: 6px; }
.pdp-card-price { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pdp-card-price .price { font-weight: 600; color: #111; }
.pdp-card-price .cut { text-decoration: line-through; color: #aaa; font-size: 13px; }
.pdp-card-price .off { color: #1a7f37; font-size: 13px; font-weight: 500; }

/* =========================
   CART PAGE
   Extracted from cart.html
   ========================= */
.fc-cart-page {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}
.fc-cart-page h1 { font-size: 28px; font-weight: 600; margin-bottom: 32px; grid-column: 1 / -1; }
.fc-cart-items { display: flex; flex-direction: column; gap: 32px; }
.fc-cart-item {
  position: relative;
  display: flex;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid #eee;
}
.fc-cart-item img { width: 140px; height: 176px; object-fit: cover; border-radius: 14px; border: 1px solid #eee; flex-shrink: 0; }
.fc-cart-item-info { flex: 1; padding-right: 32px; }
.fc-cart-item-info h2 { font-size: 18px; font-weight: 500; color: #111; }
.fc-cart-item-meta { font-size: 13px; color: #777; margin-top: 6px; }
.fc-cart-price-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.fc-cart-price { font-size: 16px; font-weight: 600; }
.fc-cart-off { font-size: 13px; font-weight: 500; color: #1a7f37; }
.fc-cart-qty { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.fc-cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #111;
  transition: background .2s, border-color .2s;
}
.fc-cart-qty button:hover { background: #111; color: #fff; border-color: #111; }
.fc-cart-qty span { font-size: 15px; font-weight: 500; min-width: 20px; text-align: center; }
.fc-cart-actions { margin-top: 12px; }
.fc-cart-remove { background: none; border: none; color: #aaa; font-size: 13px; transition: color .2s; }
.fc-cart-remove:hover { color: #d32f2f; }
.fc-wishlist-cart-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
}
.fc-wishlist-cart-btn svg { width: 20px; height: 20px; stroke: #aaa; fill: none; stroke-width: 1.6; transition: stroke .2s; }
.fc-wishlist-cart-btn.active svg { stroke: #d32f2f; fill: #d32f2f; }
.fc-cart-side { display: flex; flex-direction: column; gap: 24px; }
.fc-cart-flowrecycle {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  transition: background .3s, border-color .3s;
}
.fc-cart-flowrecycle.active { background: rgba(171,247,177,.25); border-color: rgba(171,247,177,.45); }
.fc-flowrecycle-icon {
  width: 20%;
  min-width: 56px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-flowrecycle-icon svg { width: 24px; height: 24px; stroke: #1a7f37; fill: none; stroke-width: 1.8; }
.fc-flowrecycle-text { padding: 14px 16px; }
.fc-flowrecycle-text .fc-fr-title { font-size: 14px; font-weight: 600; color: #111; }
.fc-flowrecycle-text .fc-fr-sub { font-size: 13px; color: #666; margin-top: 4px; }
.fc-flowrecycle-msg { font-size: 13px; color: #1a7f37; margin-top: 8px; padding: 0 16px 14px; display: none; }
.fc-cart-flowrecycle.active ~ .fc-flowrecycle-msg { display: block; }
.fc-order-summary h3 { font-size: 18px; font-weight: 600; margin-bottom: 20px; }
.fc-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 12px; }
.fc-summary-row.muted { color: #777; }
.fc-summary-subtotal { margin-top: 20px; padding-top: 16px; border-top: 1px solid #ddd; }
.fc-summary-subtotal .fc-summary-row span:first-child { font-weight: 500; }
.fc-summary-subtotal .fc-summary-row span:last-child { font-weight: 700; color: #111; }
.fc-summary-saved { font-size: 13px; color: #1a7f37; margin-top: 6px; }
.fc-checkout-btn {
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  transition: background .2s;
}
.fc-checkout-btn:hover { background: #333; }
.fc-trust-bar {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
  display: flex;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

/* CART REMOVE POPUP */
.fc-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.fc-popup.visible { display: flex; }
.fc-popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  width: 320px;
  text-align: center;
  position: relative;
}
.fc-popup-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 20px; color: #aaa; }
.fc-popup-box h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.fc-popup-box p { font-size: 14px; color: #666; margin-bottom: 24px; }
.fc-popup-actions { display: flex; flex-direction: column; gap: 10px; }
.fc-popup-wishlist { padding: 13px; background: #111; color: #fff; border: none; border-radius: 12px; font-size: 14px; }
.fc-popup-delete { background: none; border: none; color: #aaa; font-size: 14px; }

/* =========================
   CHECKOUT PAGE
   ========================= */
.fc-checkout-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.fc-checkout-page h1 { font-size: 26px; font-weight: 600; margin-bottom: 32px; }
.fc-checkout-form { display: flex; flex-direction: column; gap: 24px; }
.fc-form-section h2 { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: #111; }
.fc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fc-form-group { display: flex; flex-direction: column; gap: 6px; }
.fc-form-group label { font-size: 12px; color: #777; font-weight: 500; }
.fc-form-group input,
.fc-form-group select,
.fc-form-group textarea {
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 14px;
  color: #111;
  outline: none;
  transition: border-color .2s;
  background: #fff;
}
.fc-form-group input:focus,
.fc-form-group select:focus,
.fc-form-group textarea:focus { border-color: #111; }
.fc-checkout-summary { background: #fafafa; border-radius: 24px; padding: 28px; height: fit-content; position: sticky; top: 80px; }
.fc-checkout-summary h2 { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.fc-checkout-item { display: flex; gap: 12px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.fc-checkout-item img { width: 56px; height: 70px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.fc-checkout-item-info h4 { font-size: 13px; font-weight: 500; margin-bottom: 4px; }
.fc-checkout-item-info span { font-size: 12px; color: #777; }
.fc-checkout-item-price { font-size: 14px; font-weight: 600; margin-left: auto; flex-shrink: 0; }
.fc-checkout-place-order {
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  cursor: pointer;
  transition: background .2s;
}
.fc-checkout-place-order:hover { background: #333; }

/* =========================
   ORDER CONFIRMATION
   ========================= */
.fc-order-confirm {
  max-width: 640px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.fc-order-confirm-icon {
  width: 72px;
  height: 72px;
  background: #e8f5ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.fc-order-confirm-icon svg { width: 32px; height: 32px; stroke: #1a7f37; fill: none; stroke-width: 2; }
.fc-order-confirm h1 { font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.fc-order-confirm p { font-size: 15px; color: #666; line-height: 1.7; margin-bottom: 32px; }
.fc-order-details-box {
  background: #fafafa;
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  margin-bottom: 32px;
}
.fc-order-details-box h2 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }

/* =========================
   MY ACCOUNT
   ========================= */
.fc-account-page {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
.fc-account-nav { display: flex; flex-direction: column; gap: 4px; }
.fc-account-nav a {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  color: #555;
  transition: background .2s, color .2s;
}
.fc-account-nav a:hover, .fc-account-nav a.active { background: #111; color: #fff; }
.fc-account-content h1 { font-size: 24px; font-weight: 600; margin-bottom: 24px; }

/* =========================
   LOGIN / REGISTER
   ========================= */
.fc-auth-page {
  max-width: 440px;
  margin: 80px auto;
  padding: 0 24px;
}
.fc-auth-page h1 { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.fc-auth-page p { font-size: 14px; color: #777; margin-bottom: 32px; }
.fc-auth-tabs { display: flex; gap: 0; border-bottom: 1px solid #ddd; margin-bottom: 28px; }
.fc-auth-tab { padding: 12px 24px; font-size: 14px; color: #777; cursor: pointer; border-bottom: 2px solid transparent; }
.fc-auth-tab.active { color: #111; border-bottom-color: #111; }
.fc-auth-form { display: flex; flex-direction: column; gap: 16px; }
.fc-auth-submit {
  padding: 15px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.fc-auth-submit:hover { background: #333; }
.fc-auth-divider { text-align: center; font-size: 13px; color: #aaa; margin: 4px 0; }
.fc-auth-link { font-size: 13px; color: #777; text-align: center; }
.fc-auth-link a { color: #111; text-decoration: underline; }

/* =========================
   404 PAGE
   ========================= */
.fc-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.fc-404-num { font-size: 120px; font-weight: 700; color: #f0f0f0; line-height: 1; letter-spacing: -.04em; }
.fc-404 h1 { font-size: 28px; font-weight: 600; margin-top: -20px; margin-bottom: 12px; }
.fc-404 p { font-size: 15px; color: #777; max-width: 380px; margin-bottom: 32px; line-height: 1.7; }

/* =========================
   FLOWRECYCLE PAGE
   ========================= */
.fc-flowrecycle-page { max-width: 1100px; margin: 0 auto; padding: 64px 20px; }
.flow-hero { text-align: center; margin-bottom: 72px; }
.flow-hero h1 { font-size: 42px; font-weight: 600; color: #1f3d2b; }
.flow-hero p { font-size: 16px; color: #4f6a5b; margin-top: 12px; max-width: 600px; margin-inline: auto; }
.flow-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.flow-step { border: 1px solid #e1ebe6; border-radius: 28px; padding: 28px; background: #f6fbf8; }
.flow-step span { font-size: 12px; letter-spacing: .08em; color: #6b8a73; }
.flow-step h3 { font-size: 20px; font-weight: 500; margin: 10px 0 8px; color: #1f3d2b; }
.flow-step p { font-size: 14px; color: #4f6a5b; }
.flow-impact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.impact-card { text-align: center; }
.impact-card h2 { font-size: 36px; font-weight: 600; color: #1f3d2b; }
.impact-card p { font-size: 14px; color: #6b8a73; margin-top: 4px; }
.flow-why { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 80px; align-items: center; }
.flow-why h2 { font-size: 32px; font-weight: 600; color: #1f3d2b; }
.flow-why p { font-size: 15px; color: #4f6a5b; margin-top: 12px; line-height: 1.6; }
.flow-why-box { background: #f6fbf8; border-radius: 28px; padding: 32px; border: 1px solid #e1ebe6; font-size: 15px; color: #4f6a5b; }
.flow-video { margin-bottom: 80px; text-align: center; }
.flow-video h2 { font-size: 28px; font-weight: 600; color: #1f3d2b; }
.flow-video p { font-size: 15px; color: #4f6a5b; max-width: 620px; margin: 10px auto 24px; }
.flow-video-frame { width: 100%; aspect-ratio: 16/9; border-radius: 28px; background: #e6ebe8; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #6b8a73; overflow: hidden; }
.flow-video-frame video, .flow-video-frame iframe { width: 100%; height: 100%; object-fit: cover; border: none; }
.flow-cta { text-align: center; background: #f3f7f4; border-radius: 32px; padding: 56px 32px; }
.flow-cta h2 { font-size: 32px; font-weight: 600; color: #1f3d2b; }
.flow-cta p { font-size: 15px; color: #4f6a5b; margin-top: 10px; }
.flow-cta button {
  margin-top: 24px;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid #9bbfae;
  background: #e6f1ea;
  color: #1f3d2b;
  font-size: 14px;
  cursor: pointer;
}

/* =========================
   PERFECT FIT / EXPLORE MORE PAGE
   Extracted from PDP_sec.html (explore page)
   ========================= */
.perfect-fit { padding: 80px 0; }
.fit-inner { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.fit-hero { max-width: 760px; margin-bottom: 72px; }
.fit-hero h1 { font-size: 40px; font-weight: 600; line-height: 1.2; }
.fit-hero p { margin-top: 14px; font-size: 16px; color: #555; line-height: 1.6; }
.fit-block { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 96px; }
.fit-visual { width: 100%; aspect-ratio: 4/3; border-radius: 24px; background: #f2f2f2; overflow: hidden; }
.fit-visual img, .fit-visual video { width: 100%; height: 100%; object-fit: cover; }
.fit-text h2 { font-size: 28px; font-weight: 600; margin-bottom: 12px; }
.fit-text p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 12px; }
.fit-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 96px; }
.fit-detail { background: #fafafa; border-radius: 20px; padding: 24px; }
.fit-detail h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.fit-detail p { font-size: 14px; color: #555; line-height: 1.6; }
.fit-confidence { background: #f6f6f6; border-radius: 32px; padding: 56px; text-align: center; }
.fit-confidence h2 { font-size: 30px; font-weight: 600; }
.fit-confidence p { margin-top: 12px; font-size: 15px; color: #555; max-width: 680px; margin-inline: auto; line-height: 1.6; }

/* =========================
   WOOCOMMERCE OVERRIDES
   (hide default WC elements we replace)
   ========================= */
.fc-page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-page-inner {
  width: 100%;
}

.woocommerce-breadcrumb { display: none; }
.woocommerce-notices-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  background: #f9f9f9;
  border-top: 3px solid #111;
  border-radius: 0 0 12px 12px;
  padding: 14px 20px;
  font-size: 14px;
  margin: 0 0 20px;
}
.woocommerce-message a, .woocommerce-error a, .woocommerce-info a { color: #111; text-decoration: underline; }

/* Fix WooCommerce default layout issues */
.woocommerce ul.products::before,
.woocommerce-page ul.products::before,
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    display: none;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .woocommerce ul.products,
    .woocommerce-page ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.woocommerce .product {
    margin: 0;
    padding: 0;
    float: none;
    width: 100%;
}

/* Fix default WooCommerce notices */
.woocommerce .woocommerce-message {
    border: 1px solid #eee;
    border-top: 3px solid #1a7f37;
}

.woocommerce .woocommerce-error {
    border-top-color: #d32f2f;
}

/* Single product fixes */
.woocommerce div.product {
    margin: 0;
    padding: 0;
}

.woocommerce .product .onsale {
    display: none;
}

/* Ensure proper spacing */
.woocommerce .wc-ajax-wrapper {
    display: none;
}

/* Hide default WooCommerce pagination and use our own */
.woocommerce nav.woocommerce-pagination {
    display: none;
}

/* Fix WooCommerce form fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 14px;
    color: #111;
    background: #fff;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #111;
    outline: none;
}

/* Fix select dropdowns */
.woocommerce form .form-row select {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 14px;
    font-size: 14px;
    color: #111;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
}

/* =========================
   MOBILE STICKY CTA (PDP)
   ========================= */
.pdp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #eee;
  z-index: 800;
  gap: 10px;
}
.pdp-sticky-add {
  flex: 1;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
}

/* =========================
   RESPONSIVE — TABLET (≤1024px)
   ========================= */
@media (max-width: 1024px) {
  .fc-hero { grid-template-columns: 1fr; min-height: auto; }
  .fc-hero-visual { min-height: 400px; order: -1; }
  .fc-hero-content { padding: 60px 40px; }
  .fc-models-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-product-grid { grid-template-columns: repeat(3, 1fr); }
  .fc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pdp-reco-list { grid-template-columns: repeat(3, 1fr); }
  .pdp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .features-layout { grid-template-columns: 1fr; }
  .feature-tabs { flex-direction: row; overflow-x: auto; gap: 12px; }
  .feature-tab { white-space: nowrap; flex-shrink: 0; }
  .fit-block { grid-template-columns: 1fr; gap: 32px; }
  .fit-details { grid-template-columns: 1fr; }
}

/* =========================
   RESPONSIVE — MOBILE (≤900px)
   ========================= */
@media (max-width: 900px) {
  .pdp-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .fc-cart-page { grid-template-columns: 1fr; gap: 40px; }
  .fc-checkout-page { grid-template-columns: 1fr; }
  .fc-account-page { grid-template-columns: 1fr; }
  .fc-account-nav { flex-direction: row; overflow-x: auto; gap: 8px; }
  .fc-account-nav a { white-space: nowrap; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-impact { grid-template-columns: 1fr; }
  .flow-why { grid-template-columns: 1fr; }
  .built-inner { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-text { max-width: 100%; }
}

/* =========================
   RESPONSIVE — MOBILE (≤640px)
   ========================= */
@media (max-width: 640px) {
  .fc-hamburger { display: flex; }
  .fc-nav { display: none; }
  .fc-header-inner { gap: 0; justify-content: space-between; }
  .fc-logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .fc-hero-content { padding: 40px 20px 48px; }
  .fc-hero-title { font-size: 36px; }
  .fc-models-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .fc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fc-why-grid { grid-template-columns: 1fr; }
  .fc-footer-grid { grid-template-columns: 1fr; }
  .fc-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .fc-filters-row { overflow-x: auto; justify-content: flex-start; }
  .fc-filters-row::-webkit-scrollbar { display: none; }
  .fc-sort-btn, .fc-price-pill { flex-shrink: 0; }
  .pdp-title { font-size: 24px; }
  .pdp-price .new { font-size: 20px; }
  .pdp-wrapper { padding: 20px 16px; }
  .image-like-btn { display: flex; }
  .wishlist-btn { display: none; }
  .share-btn { display: flex; }
  .pdp-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .badge-row { overflow-x: auto; gap: 12px; }
  .badge-row::-webkit-scrollbar { display: none; }
  .badge { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; padding: 12px 14px; text-align: left; }
  .badge-icon { width: 18px; height: 18px; margin: 0; }
  .flow-badges-inner { gap: 12px; }
  .flow-badge { flex-direction: column; text-align: center; gap: 8px; }
  .flow-badge-text { font-size: 14px; }
  .promo-card { height: auto; min-height: 100px; }
  .pdp-reco-list { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .pdp-reco-list::-webkit-scrollbar { display: none; }
  .pdp-reco-card { min-width: 72%; scroll-snap-align: start; }
  .pdp-reviews-grid { grid-template-columns: 1fr; }
  .built-inner { gap: 40px; }
  .built-stack { height: 300px; }
  .built-title { font-size: 24px; }
  .pdp-built-iphone { padding: 64px 0; }
  .flowrecycle-count { padding: 90px 0; }
  #recycleCount { font-size: 42px; }
  .flow-hero h1 { font-size: 30px; }
  .fc-checkout-page { margin: 40px auto; }
  .fc-form-row { grid-template-columns: 1fr; }
  .pdp-features { padding: 60px 0; }
  .feature-slide { aspect-ratio: 1/1; }
  .fit-hero h1 { font-size: 28px; }
  .flow-hero h1 { font-size: 30px; }
  .flow-steps { gap: 16px; }
  .fit-confidence { padding: 32px 20px; }
  .fc-checkout-btn { position: fixed; left: 8px; right: 8px; bottom: 8px; width: calc(100% - 16px); border-radius: 14px; z-index: 800; }
  .fc-models { padding: 60px 0; }
  .fc-why { padding: 60px 0; }
  .fc-featured { padding: 0 0 60px; }
}

/* =============================================================
   ANNOUNCEMENT BAR
   ============================================================= */
.fc-announcement {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
.fc-announcement-track {
  display: flex;
  animation: fcAnnounceScroll 20s linear infinite;
  width: max-content;
}
.fc-announcement-item {
  white-space: nowrap;
  padding: 0 48px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s;
}
.fc-announcement-item:hover { opacity: .8; }
.fc-announcement-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.fc-announcement-close:hover { background: rgba(255,255,255,.2); }
@keyframes fcAnnounceScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   LIQUID GLASSMORPHISM HEADER
   ============================================================= */
.fc-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  height: 64px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}
.fc-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}
.fc-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
}

/* =============================================================
   HAMBURGER BUTTON
   ============================================================= */
.fc-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.fc-hamburger i {
  font-size: 20px;
  color: #111;
  transition: transform .3s ease;
}
.fc-hamburger.active i {
  transform: rotate(90deg);
}

/* =============================================================
   LOGO
   ============================================================= */
.fc-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #111;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.fc-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* =============================================================
   MAIN NAV
   ============================================================= */
.fc-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-nav ul {
  display: flex;
  gap: 32px;
}
.fc-nav a {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  letter-spacing: .02em;
  transition: color .2s, opacity .2s;
  position: relative;
}
.fc-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #111;
  transition: width .3s ease;
}
.fc-nav a:hover::after { width: 100%; }
.fc-nav .current-menu-item > a::after,
.fc-nav .current_page_item > a::after { width: 100%; }

/* =============================================================
   HEADER ACTIONS
   ============================================================= */
.fc-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.fc-header-btn {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  position: relative;
  border-radius: 50%;
  transition: background .2s;
}
.fc-header-btn:hover { background: rgba(0,0,0,.05); }
.fc-header-btn svg { width: 20px; height: 20px; }

/* CART COUNT BUBBLE */
.fc-cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 10px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 0 4px;
}
.fc-cart-count.visible { display: flex; }

/* =============================================================
   MOBILE NAV DRAWER - FIXED LAYOUT
   ============================================================= */
.fc-mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: left .35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,.15);
}
.fc-mobile-nav.open { left: 0; }
.fc-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}
.fc-mobile-logo img { height: 32px; width: auto; }
.fc-mobile-nav-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #111;
  border-radius: 50%;
  transition: background .2s;
}
.fc-mobile-nav-close:hover { background: #f5f5f5; }
.fc-mobile-menu {
  padding: 0 20px;
}
.fc-mobile-menu li { border-bottom: 1px solid #f5f5f5; }
.fc-mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  transition: color .2s;
}
.fc-mobile-menu a:hover { color: #555; }
.fc-mobile-nav-footer {
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid #f0f0f0;
}
.fc-mobile-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #555;
  padding: 14px 0;
  transition: color .2s;
}
.fc-mobile-link:hover { color: #111; }
.fc-mobile-link-green {
  color: #1a7f37;
  font-weight: 500;
}

/* =============================================================
   OVERLAY
   ============================================================= */
.fc-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fc-nav-overlay.active { opacity: 1; pointer-events: auto; }

/* =============================================================
   AUTO-SCROLL HERO WITH PAGINATION
   ============================================================= */
.fc-hero-section {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  min-height: 70vh;
}
.fc-hero-slider {
  display: flex;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 70vh;
  min-height: 500px;
}
.fc-hero-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.fc-hero-slide-content {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fc-hero-slide-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}
.fc-hero-slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-hero-pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.fc-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}
.fc-hero-dot.active {
  width: 32px;
  border-radius: 5px;
  background: #111;
}
.fc-hero-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.fc-hero-logo img { height: 40px; width: auto; }
.fc-hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.fc-hero-arrows.left { left: 16px; }
.fc-hero-arrows.right { right: 16px; }
.fc-hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: all .2s;
}
.fc-hero-arrow:hover { background: #fff; transform: scale(1.05); }
.fc-hero-arrow i { font-size: 14px; color: #111; }

/* Hero Stats */
.fc-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}
.fc-stat-number {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.fc-stat-number i {
  font-size: 14px;
  color: #f59e0b;
  margin-left: 2px;
}
.fc-stat-label {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
}

/* Hero Actions with Icons */
.fc-btn-primary i {
  font-size: 12px;
  margin-left: 6px;
}
.fc-btn-ghost i {
  font-size: 12px;
  margin-right: 6px;
  color: #1a7f37;
}

/* =============================================================
   SCROLLABLE FOOTER
   ============================================================= */
.fc-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
  color: #fff;
  padding: 0;
  margin-top: 80px;
}
.fc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
.fc-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px;
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 #111;
}
.fc-footer-main::-webkit-scrollbar {
  width: 6px;
}
.fc-footer-main::-webkit-scrollbar-track {
  background: #111;
}
.fc-footer-main::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}
.fc-footer-brand .fc-logo {
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
}
.fc-footer-brand p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.fc-footer-socials {
  display: flex;
  gap: 12px;
}
.fc-footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.fc-footer-socials a:hover {
  background: #111;
  transform: translateY(-2px);
}
.fc-footer-socials i { font-size: 16px; color: #fff; }
.fc-footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fc-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.fc-footer-col a {
  font-size: 13px;
  color: #999;
  transition: color .2s;
}
.fc-footer-col a:hover { color: #fff; }
.fc-footer-bottom {
  padding: 24px;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #555;
}
.fc-footer-bottom-links {
  display: flex;
  gap: 16px;
}
.fc-footer-bottom-links a { color: #555; transition: color .2s; }
.fc-footer-bottom-links a:hover { color: #fff; }

/* =============================================================
   LIGHTWEIGHT 3D ANIMATIONS
   ============================================================= */
@keyframes fcFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  25% { transform: translateY(-8px) rotateX(2deg) rotateY(-2deg); }
  50% { transform: translateY(0) rotateX(0) rotateY(0); }
  75% { transform: translateY(8px) rotateX(-2deg) rotateY(2deg); }
}
.fc-3d-float {
  animation: fcFloat 6s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
}
@keyframes fcTilt {
  0%, 100% { transform: perspective(1000px) rotateX(0) rotateY(0); }
  25% { transform: perspective(1000px) rotateX(2deg) rotateY(-2deg); }
  75% { transform: perspective(1000px) rotateX(-2deg) rotateY(2deg); }
}
.fc-3d-tilt {
  animation: fcTilt 8s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes fcPulse3d {
  0%, 100% { transform: perspective(1000px) scale(1); }
  50% { transform: perspective(1000px) scale(1.02); }
}
.fc-3d-pulse {
  animation: fcPulse3d 3s ease-in-out infinite;
  transform-style: preserve-3d;
}

/* =============================================================
   ADDITIONAL HOMEPAGE SECTIONS
   ============================================================= */
.fc-section-promo {
  padding: 80px 0;
  background: #fafafa;
}
.fc-section-promo-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.fc-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fc-promo-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform .3s ease;
  cursor: pointer;
}
.fc-promo-card:hover { transform: translateY(-4px); }
.fc-promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  z-index: 1;
}
.fc-promo-card-bg1 { background: linear-gradient(135deg, #ffeef0 0%, #ffd1d9 100%); }
.fc-promo-card-bg2 { background: linear-gradient(135deg, #e8f4ff 0%, #c9e4ff 100%); }
.fc-promo-card-bg3 { background: linear-gradient(135deg, #e8f7ee 0%, #c6f0d9 100%); }
.fc-promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-promo-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.fc-promo-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fc-promo-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.fc-promo-card-link {
  font-size: 13px;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fc-promo-card-link i { font-size: 12px; }

.fc-section-instagram {
  padding: 80px 0;
  background: #fff;
}
.fc-section-instagram-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.fc-section-instagram h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}
.fc-section-instagram p {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}
.fc-insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.fc-insta-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .2s;
}
.fc-insta-item:hover { transform: scale(1.03); }
.fc-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
}
.fc-insta-item:hover .fc-insta-overlay { opacity: 1; }
.fc-insta-overlay i { font-size: 24px; color: #fff; }

.fc-section-newsletter {
  padding: 80px 0;
  background: #111;
  color: #fff;
}
.fc-newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.fc-newsletter h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.fc-newsletter p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}
.fc-newsletter-form {
  display: flex;
  gap: 12px;
}
.fc-newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
}
.fc-newsletter-form input:focus {
  outline: none;
  border-color: #555;
}
.fc-newsletter-form button {
  padding: 14px 28px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.fc-newsletter-form button:hover { background: #e0e0e0; }

/* =============================================================
   MOBILE HAMBURGER FIXES
   ============================================================= */
@media (max-width: 640px) {
  .fc-hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px;
    transition: background .2s;
  }
  .fc-hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  .fc-hamburger i {
    font-size: 18px;
    color: #111;
    transition: transform .3s ease, opacity .3s ease;
  }
  .fc-hamburger.active i {
    transform: rotate(90deg);
  }
  
  /* Header layout for mobile */
  .fc-header-inner {
    gap: 8px !important;
    padding: 0 12px !important;
  }
  
  .fc-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) !important;
  }
  
  .fc-header-actions {
    gap: 4px !important;
  }
  
  .fc-header-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .fc-header-btn i {
    font-size: 16px;
  }
  
  /* Mobile nav drawer fix */
  .fc-mobile-nav {
    top: 0 !important;
    height: 100vh !important;
    max-width: 320px;
    padding-top: 0;
  }
  
  .fc-mobile-nav-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .fc-mobile-menu {
    padding: 0;
  }
  
  .fc-mobile-menu li {
    border-bottom: 1px solid #f5f5f5;
  }
  
  .fc-mobile-menu a {
    display: block;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    transition: background .2s, color .2s;
  }
  
  .fc-mobile-menu a:hover {
    background: #f9f9f9;
    color: #111;
  }
  
  .fc-mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
  }
  
  /* Hero section mobile */
  .fc-hero-section {
    min-height: 60vh;
  }
  
  .fc-hero-slider {
    height: 60vh;
    min-height: 400px;
  }
  
  .fc-hero-slide {
    grid-template-columns: 1fr !important;
  }
  
  .fc-hero-slide-content {
    padding: 32px 20px !important;
    text-align: center;
    order: 2;
  }
  
  .fc-hero-slide-visual {
    min-height: 200px !important;
    order: 1;
  }
  
  .fc-hero-logo {
    top: 16px;
  }
  
  .fc-hero-logo img {
    height: 28px !important;
  }
  
  .fc-hero-pagination {
    bottom: 12px;
  }
  
  .fc-hero-arrows {
    display: none;
  }
  
  /* Footer mobile */
  .fc-footer {
    padding: 0;
  }
  
  .fc-footer-main {
    grid-template-columns: 1fr !important;
    padding: 32px 20px !important;
    max-height: none !important;
    overflow-y: visible !important;
  }
  
  .fc-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px !important;
  }
  
  /* Announcement bar */
  .fc-announcement {
    padding: 8px 36px 8px 12px !important;
  }
  
  .fc-announcement-item {
    font-size: 11px !important;
    padding: 0 24px !important;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
  .fc-hamburger {
    display: flex !important;
  }
  .fc-nav {
    display: none !important;
  }
  .fc-logo {
    position: relative;
    left: auto;
    transform: none !important;
  }
}

/* Desktop - hide hamburger */
@media (min-width: 1025px) {
  .fc-hamburger {
    display: none !important;
  }
}

/* =============================================================
   RESPONSIVE STYLES
   ============================================================= */
@media (max-width: 1024px) {
  .fc-hero-slide { grid-template-columns: 1fr; min-height: auto; }
  .fc-hero-slide-visual { min-height: 300px; order: -1; }
  .fc-hero-slide-content { padding: 48px 32px; }
  .fc-promo-grid { grid-template-columns: 1fr 1fr; }
  .fc-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .fc-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .fc-nav { display: none; }
  .fc-header-inner { gap: 12px; padding: 0 16px; }
  .fc-logo { position: relative; left: auto; transform: none; }
  .fc-header-actions { gap: 8px; }
  .fc-hero-slider { height: auto; min-height: auto; }
  .fc-hero-slide { grid-template-columns: 1fr; }
  .fc-hero-slide-content { 
    padding: 40px 20px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .fc-hero-slide-visual { min-height: 280px; }
  .fc-hero-pagination { bottom: 16px; }
  .fc-hero-arrows { display: none; }
  .fc-hero-stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .fc-stat-number {
    font-size: 18px;
  }
  .fc-stat-label {
    font-size: 10px;
  }
  .fc-hero-title {
    font-size: 28px !important;
  }
  .fc-hero-sub {
    font-size: 14px;
  }
  .fc-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .fc-btn-primary, .fc-btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
  .fc-promo-grid { grid-template-columns: 1fr; }
  .fc-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-footer-main { grid-template-columns: 1fr; padding: 40px 20px; }
  .fc-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .fc-newsletter-form { flex-direction: column; }
  .fc-announcement { padding-right: 40px; }
  .fc-hero-section { min-height: 60vh; }
}

/* =============================================================
   BACKWARD COMPATIBILITY - Keep old selectors
   ============================================================= */
.fc-header { position: sticky; top: 0; left: 0; right: 0; z-index: 900; }
.fc-header-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; gap: 32px; }
.fc-logo { font-size: 18px; font-weight: 700; letter-spacing: -.02em; color: #111; flex-shrink: 0; }
.fc-logo img { height: 32px; width: auto; }
.fc-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.fc-nav ul { display: flex; gap: 32px; }
.fc-nav a { font-size: 13px; font-weight: 500; color: #111; letter-spacing: .02em; transition: color .2s; }
.fc-nav a:hover { color: #555; }
.fc-header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.fc-header-btn { background: none; border: none; padding: 4px; display: flex; align-items: center; justify-content: center; color: #111; position: relative; }
.fc-header-btn svg { width: 20px; height: 20px; stroke: #111; fill: none; stroke-width: 1.6; }
.fc-cart-count { position: absolute; top: -4px; right: -6px; width: 16px; height: 16px; background: #111; color: #fff; border-radius: 50%; font-size: 10px; display: none; align-items: center; justify-content: center; font-weight: 600; }
.fc-cart-count.visible { display: flex; }
.fc-mobile-nav { position: fixed; top: 64px; left: -100%; width: 80%; max-width: 340px; height: calc(100vh - 64px); background: #fff; z-index: 899; transition: left .35s cubic-bezier(.4,0,.2,1); overflow-y: auto; border-right: 1px solid #eee; padding: 24px 20px; }
.fc-mobile-nav.open { left: 0; }
.fc-nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 898; opacity: 0; pointer-events: none; transition: opacity .3s; }
.fc-nav-overlay.active { opacity: 1; pointer-events: auto; }
.fc-side-cart { position: fixed; top: 0; right: -100%; width: 400px; max-width: 100vw; height: 100vh; background: #fff; z-index: 1000; transition: right .4s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; border-left: 1px solid #eee; }
.fc-side-cart.open { right: 0; }
.fc-side-cart-header { padding: 20px 24px; border-bottom: 1px solid #eee; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.fc-side-cart-header h3 { font-size: 16px; font-weight: 600; }
.fc-side-cart-close { background: none; border: none; font-size: 22px; color: #777; line-height: 1; cursor: pointer; }
.fc-side-cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.fc-side-cart-empty { text-align: center; padding: 60px 0; color: #777; font-size: 14px; }
.fc-side-cart-empty svg { width: 48px; height: 48px; stroke: #ddd; margin: 0 auto 12px; }
.fc-side-cart-footer { padding: 20px 24px; border-top: 1px solid #eee; flex-shrink: 0; }
.fc-side-cart-subtotal { display: flex; justify-content: space-between; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.fc-side-cart-checkout { display: block; width: 100%; padding: 16px; background: #111; color: #fff; border: none; border-radius: 14px; font-size: 15px; font-weight: 500; text-align: center; }
.fc-side-cart-view { display: block; width: 100%; padding: 13px; border: 1px solid #ddd; border-radius: 14px; font-size: 14px; text-align: center; margin-top: 10px; color: #111; }
.fc-footer { background: #111; color: #fff; padding: 72px 0 40px; margin-top: 80px; }
.fc-footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.fc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.fc-footer-brand .fc-logo { color: #fff; margin-bottom: 14px; }
.fc-footer-brand p { font-size: 13px; color: #777; line-height: 1.7; max-width: 260px; }
.fc-footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: .08em; color: #999; margin-bottom: 16px; text-transform: uppercase; }
.fc-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.fc-footer-col a { font-size: 13px; color: #888; transition: color .2s; }
.fc-footer-col a:hover { color: #fff; }
.fc-footer-bottom { padding-top: 32px; border-top: 1px solid #222; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #555; }
.fc-hero { min-height: calc(100vh - 64px); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.fc-hero-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px 80px 80px; }
.fc-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; color: #777; text-transform: uppercase; margin-bottom: 20px; }
.fc-hero-title { font-size: clamp(42px, 5vw, 72px); font-weight: 600; line-height: 1.05; letter-spacing: -.03em; color: #111; margin-bottom: 20px; }
.fc-hero-sub { font-size: 16px; color: #555; line-height: 1.7; max-width: 400px; margin-bottom: 36px; }
.fc-hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.fc-btn-primary { padding: 15px 32px; background: #111; color: #fff; border: none; border-radius: 999px; font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, transform .2s; }
.fc-btn-primary:hover { background: #333; transform: translateY(-1px); }
.fc-btn-ghost { padding: 14px 28px; background: none; color: #111; border: 1px solid #ddd; border-radius: 999px; font-size: 14px; font-weight: 500; transition: border-color .2s; }
.fc-btn-ghost:hover { border-color: #111; }
.fc-hero-visual { background: #f5f5f5; position: relative; overflow: hidden; }
.fc-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.fc-models { padding: 100px 0; }
.fc-models-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.fc-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.fc-section-title { font-size: 32px; font-weight: 600; letter-spacing: -.02em; color: #111; }
.fc-section-link { font-size: 13px; color: #777; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.fc-section-link:hover { color: #111; }
.fc-models-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fc-model-card { aspect-ratio: 3/4; border-radius: 24px; background: #f5f5f5; overflow: hidden; position: relative; cursor: pointer; }
.fc-model-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fc-model-card:hover img { transform: scale(1.03); }
.fc-model-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: linear-gradient(transparent, rgba(0,0,0,.5)); color: #fff; }
.fc-model-label h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.fc-model-label span { font-size: 12px; opacity: .8; }
.fc-featured { padding: 0 0 100px; }
.fc-featured-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.fc-why { background: #fafafa; padding: 100px 0; }
.fc-why-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; text-align: center; }
.fc-why-inner .fc-section-title { margin-bottom: 12px; }
.fc-why-sub { font-size: 15px; color: #777; margin-bottom: 60px; }
.fc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fc-why-card { text-align: left; }
.fc-why-icon { width: 52px; height: 52px; background: #111; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.fc-why-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.6; }
.fc-why-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.fc-why-card p { font-size: 14px; color: #666; line-height: 1.7; }
.fc-reviews-marquee { padding: 80px 0; overflow: hidden; }
.fc-reviews-marquee-header { max-width: 1400px; margin: 0 auto 40px; padding: 0 24px; }
.fc-reviews-track { display: flex; gap: 20px; animation: fcReviews 40s linear infinite; width: max-content; }
.fc-reviews-track:hover { animation-play-state: paused; }
@keyframes fcReviews { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.fc-review-card-sm { width: 300px; flex-shrink: 0; background: #f9f9f9; border-radius: 20px; padding: 24px; }
.fc-review-stars { color: #111; font-size: 12px; margin-bottom: 10px; }
.fc-review-text { font-size: 13px; color: #333; line-height: 1.6; margin-bottom: 14px; }
.fc-review-author { font-size: 12px; color: #777; font-weight: 500; }
.fc-product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.fc-product-card { border: 1px solid #eee; border-radius: 28px; background: #fafafa; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; cursor: pointer; }
.fc-product-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-2px); }
.fc-product-image { aspect-ratio: 4/5; background: #fff; border-bottom: 1px dashed #eee; overflow: hidden; position: relative; }
.fc-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fc-product-card:hover .fc-product-image img { transform: scale(1.04); }
.fc-product-info { padding: 14px 16px 16px; }
.fc-product-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: #111; }
.fc-product-desc { font-size: 12px; color: #777; margin-bottom: 8px; line-height: 1.4; }
.fc-price-row { display: flex; gap: 8px; align-items: center; }
.fc-price-old { font-size: 12px; color: #aaa; text-decoration: line-through; }
.fc-price-new { font-size: 15px; font-weight: 600; color: #111; }
.fc-price-off { font-size: 11px; font-weight: 600; color: #1a7f37; }
.fc-microbadge { margin-top: 8px; display: inline-block; padding: 4px 10px; border-radius: 12px; border: 1px dashed #ddd; font-size: 11px; color: #555; background: #fff; }
.flowrecycle-count { padding: 120px 0; background: #fff; position: relative; overflow: hidden; transition: background .5s ease; }
.flowrecycle-count.active { background: #f3f7f4; }
.flow-leaves { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0; transition: opacity .5s ease; }
.flowrecycle-count.active .flow-leaves { opacity: 1; }
.leaf { position: absolute; font-size: 22px; opacity: .22; animation: leafFloat 7s ease-in-out infinite; }
.leaf.sm { font-size: 16px; opacity: .16; }
.leaf.md { font-size: 22px; opacity: .22; }
.leaf.lg { font-size: 28px; opacity: .28; }
@keyframes leafFloat { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(5deg); } 100% { transform: translateY(0) rotate(0deg); } }
.flowcount-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; text-align: center; position: relative; z-index: 2; }
.flowcount-eyebrow { font-size: 22px; font-weight: 500; color: #1f3d2b; margin-bottom: 18px; }
#recycleCount { font-size: 56px; font-weight: 600; color: #1f3d2b; }
.flowcount-label { display: block; margin-top: 8px; font-size: 14px; color: #6b8a73; }
.flowcount-sub { font-size: 14px; color: #4f6a5b; max-width: 520px; margin: 12px auto 0; }
.flowcount-more { color: #1f3d2b; text-decoration: underline; }
.flowcount-action { margin-top: 36px; }
.flowcount-btn { padding: 14px 30px; border-radius: 999px; border: 1px solid #9bbfae; background: #e6f1ea; color: #1f3d2b; font-size: 14px; cursor: pointer; transition: .3s ease; }
.flowcount-btn.active { background: #cfe6da; border-color: #cfe6da; }
.flowcount-impact { margin-top: 16px; font-size: 13px; color: #4f6a5b; }
.fc-ticker { background: #111; color: #fff; padding: 14px 0; overflow: hidden; white-space: nowrap; }
.fc-ticker-track { display: inline-flex; animation: fcTicker 28s linear infinite; }
.fc-ticker-track span { font-size: 12px; font-weight: 500; letter-spacing: .06em; padding: 0 40px; }
.fc-ticker-track span::before { content: "•"; margin-right: 40px; opacity: .5; }
@keyframes fcTicker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
