/** Shopify CDN: Minification failed

Line 31:0 All "@import" rules must come first

**/
/* ============================================
   FrshEssence Homepage — fe-homepage.css
   Mobile-first. Trade theme compatible.
   ============================================ */

:root {
  --fe-black: #080808;
  --fe-off-black: #111111;
  --fe-dark: #181818;
  --fe-mid: #242424;
  --fe-gold: #c9a96e;
  --fe-gold-light: #e8d5b0;
  --fe-gold-dim: rgba(201,169,110,0.18);
  --fe-white: #ffffff;
  --fe-white-70: rgba(255,255,255,0.7);
  --fe-white-50: rgba(255,255,255,0.5);
  --fe-white-30: rgba(255,255,255,0.3);
  --fe-white-10: rgba(255,255,255,0.1);
  --fe-font-display: 'Cormorant Garamond', Georgia, serif;
  --fe-font-body: 'Jost', system-ui, sans-serif;
  --fe-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fe-transition: 0.35s var(--fe-ease);
}

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Base resets for FE sections ── */
.fe-section * { box-sizing: border-box; }
.fe-section a { text-decoration: none; }
.fe-section img { display: block; max-width: 100%; }
.fe-section button { cursor: pointer; border: none; background: none; font-family: var(--fe-font-body); }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.fe-announce {
  background: var(--fe-gold);
  color: var(--fe-black);
  text-align: center;
  padding: 11px 16px;
  font-family: var(--fe-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fe-announce__msg {
  display: none;
  width: 100%;
}
.fe-announce__msg.is-active {
  display: block;
  animation: fe-fadeMsg 0.5s var(--fe-ease) both;
}
@keyframes fe-fadeMsg {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO — VIDEO BACKGROUND
   ============================================ */
.fe-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--fe-black);
}

/* Video layer */
.fe-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fe-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}
.fe-hero__video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

/* Gradient overlays — mobile: heavy bottom overlay so text is always readable */
.fe-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,
      rgba(8,8,8,0.98) 0%,
      rgba(8,8,8,0.75) 35%,
      rgba(8,8,8,0.25) 70%,
      rgba(8,8,8,0.15) 100%
    );
}

/* Content */
.fe-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px 52px;
}
.fe-hero__eyebrow {
  font-family: var(--fe-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fe-slideUp 0.9s 0.2s var(--fe-ease) both;
}
.fe-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--fe-gold);
  flex-shrink: 0;
}
.fe-hero__headline {
  font-family: var(--fe-font-display);
  font-size: clamp(42px, 11vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fe-white);
  margin-bottom: 18px;
  opacity: 0;
  animation: fe-slideUp 0.9s 0.35s var(--fe-ease) both;
}
.fe-hero__headline em {
  font-style: italic;
  color: var(--fe-gold-light);
}
.fe-hero__sub {
  font-family: var(--fe-font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fe-white-70);
  margin-bottom: 32px;
  max-width: 420px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: fe-slideUp 0.9s 0.5s var(--fe-ease) both;
}
.fe-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: fe-slideUp 0.9s 0.65s var(--fe-ease) both;
}
.fe-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 32px;
  opacity: 0;
  animation: fe-slideUp 0.9s 0.8s var(--fe-ease) both;
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.fe-hero__trust-item {
  font-family: var(--fe-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fe-hero__trust-item::before {
  content: '✦';
  color: var(--fe-gold);
  font-size: 8px;
}

/* Scroll cue */
.fe-hero__scroll-cue {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fe-fadeIn 1s 1.2s ease both;
}
.fe-hero__scroll-cue span {
  font-family: var(--fe-font-body);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-lr;
}
.fe-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--fe-gold), transparent);
  animation: fe-scrollLine 2s 1.5s ease infinite;
}
@keyframes fe-scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ============================================
   SHARED BUTTONS
   ============================================ */
.fe-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fe-gold);
  color: var(--fe-black);
  padding: 16px 32px;
  font-family: var(--fe-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--fe-transition);
  position: relative;
  overflow: hidden;
}
.fe-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--fe-transition);
}
.fe-btn-primary:active::after { opacity: 1; }

.fe-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--fe-white);
  padding: 15px 32px;
  font-family: var(--fe-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all var(--fe-transition);
}
.fe-btn-ghost:active {
  border-color: var(--fe-gold);
  color: var(--fe-gold);
}

.fe-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--fe-gold);
  padding: 14px 40px;
  font-family: var(--fe-font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.4);
  transition: all var(--fe-transition);
}
.fe-btn-outline:active {
  background: var(--fe-gold);
  color: var(--fe-black);
}

/* Desktop hover states */
@media (hover: hover) {
  .fe-btn-primary:hover { background: var(--fe-gold-light); transform: translateY(-1px); }
  .fe-btn-ghost:hover   { border-color: var(--fe-gold); color: var(--fe-gold); }
  .fe-btn-outline:hover { background: var(--fe-gold); color: var(--fe-black); }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.fe-section-header {
  text-align: center;
  margin-bottom: 44px;
}
.fe-eyebrow {
  font-family: var(--fe-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 14px;
}
.fe-section-title {
  font-family: var(--fe-font-display);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 300;
  color: var(--fe-white);
  line-height: 1.1;
}
.fe-section-sub {
  font-family: var(--fe-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--fe-white-50);
  margin-top: 12px;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

/* ============================================
   PROOF BAR
   ============================================ */
.fe-proof {
  background: var(--fe-off-black);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 24px 20px;
}
.fe-proof__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fe-proof__stars {
  color: var(--fe-gold);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
}
.fe-proof__rating-text {
  font-family: var(--fe-font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--fe-white-50);
  letter-spacing: 0.04em;
}
.fe-proof__rating-text strong {
  color: var(--fe-white);
  font-weight: 500;
}
.fe-proof__quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fe-proof__quote {
  font-family: var(--fe-font-display);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.fe-proof__quote cite {
  display: block;
  font-style: normal;
  font-family: var(--fe-font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-top: 6px;
}

/* ============================================
   BESTSELLERS
   ============================================ */
.fe-bestsellers {
  background: var(--fe-black);
  padding: 64px 16px;
}
.fe-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.fe-product-card {
  background: var(--fe-off-black);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* Touch feedback */
.fe-product-card:active { opacity: 0.92; }

.fe-product__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #141414;
  position: relative;
}
.fe-product__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--fe-ease);
}
@media (hover: hover) {
  .fe-product-card:hover .fe-product__img-wrap img { transform: scale(1.05); }
}
.fe-product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--fe-font-body);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
}
.fe-badge--loved { background: var(--fe-gold); color: var(--fe-black); }
.fe-badge--gift  { background: rgba(201,169,110,0.12); color: var(--fe-gold); border: 1px solid rgba(201,169,110,0.3); }
.fe-badge--sold  { background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15); }

.fe-product__info {
  padding: 16px 14px 18px;
}
.fe-product__brand {
  font-family: var(--fe-font-body);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 6px;
}
.fe-product__name {
  font-family: var(--fe-font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--fe-white);
  line-height: 1.25;
  margin-bottom: 12px;
}
.fe-product__prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.fe-product__price    { font-family: var(--fe-font-body); font-size: 15px; font-weight: 500; color: var(--fe-white); }
.fe-product__compare  { font-family: var(--fe-font-body); font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); text-decoration: line-through; }
.fe-product__savings  { font-family: var(--fe-font-body); font-size: 10px; font-weight: 500; color: var(--fe-gold); letter-spacing: 0.04em; }

.fe-btn-atc {
  width: 100%;
  padding: 12px 8px;
  font-family: var(--fe-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(201,169,110,0.25);
  background: transparent;
  cursor: pointer;
  transition: all var(--fe-transition);
  position: relative;
  overflow: hidden;
}
.fe-btn-atc::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fe-gold);
  transform: translateX(-101%);
  transition: transform 0.4s var(--fe-ease);
  z-index: 0;
}
.fe-btn-atc span { position: relative; z-index: 1; transition: color 0.35s ease; }
.fe-btn-atc:active { color: var(--fe-black); border-color: var(--fe-gold); }
.fe-btn-atc:active::after { transform: translateX(0); }
@media (hover: hover) {
  .fe-btn-atc:hover { color: var(--fe-black); border-color: var(--fe-gold); }
  .fe-btn-atc:hover::after { transform: translateX(0); }
}

.fe-btn-notify {
  width: 100%;
  padding: 12px 8px;
  font-family: var(--fe-font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  cursor: pointer;
  transition: all var(--fe-transition);
}
@media (hover: hover) {
  .fe-btn-notify:hover { color: var(--fe-gold); border-color: rgba(201,169,110,0.4); }
}
.fe-view-all {
  text-align: center;
}

/* ============================================
   SCENT FINDER BANNER
   ============================================ */
.fe-finder {
  position: relative;
  padding: 80px 20px;
  background: var(--fe-dark);
  text-align: center;
  overflow: hidden;
}
.fe-finder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
/* Animated gold particles */
.fe-finder__particle {
  position: absolute;
  width: 1px;
  height: 1px;
  background: var(--fe-gold);
  border-radius: 50%;
  opacity: 0;
  animation: fe-float var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes fe-float {
  0%   { opacity: 0; transform: translate(0, 0) scale(1); }
  20%  { opacity: 0.5; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translate(var(--tx, 20px), -80px) scale(0); }
}
.fe-finder__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}
.fe-finder__title {
  font-family: var(--fe-font-display);
  font-size: clamp(36px, 9vw, 54px);
  font-weight: 300;
  color: var(--fe-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.fe-finder__sub {
  font-family: var(--fe-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--fe-white-50);
  line-height: 1.75;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

/* ============================================
   GENDER SPLIT
   ============================================ */
.fe-gender {
  display: flex;
  flex-direction: column;
}
.fe-gender__panel {
  position: relative;
  height: 52vw;
  min-height: 280px;
  max-height: 420px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.fe-gender__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--fe-ease);
}
@media (hover: hover) {
  .fe-gender__panel:hover .fe-gender__bg { transform: scale(1.04); }
}
.fe-gender__panel--him .fe-gender__bg {
  background-image:
    linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.3) 60%, rgba(8,8,8,0.15) 100%),
    url('https://images.unsplash.com/photo-1594938298603-d8f63df26ee8?w=800&q=80');
}
.fe-gender__panel--her .fe-gender__bg {
  background-image:
    linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.3) 60%, rgba(8,8,8,0.15) 100%),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?w=800&q=80');
}
.fe-gender__content {
  position: absolute;
  bottom: 28px;
  left: 20px;
  z-index: 2;
}
.fe-gender__label {
  font-family: var(--fe-font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 8px;
}
.fe-gender__title {
  font-family: var(--fe-font-display);
  font-size: clamp(30px, 7vw, 44px);
  font-weight: 300;
  color: var(--fe-white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.fe-gender__desc {
  font-family: var(--fe-font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 260px;
  letter-spacing: 0.02em;
}
.fe-gender__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fe-font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fe-white);
  text-decoration: none;
  border-bottom: 1px solid var(--fe-gold);
  padding-bottom: 4px;
  transition: color var(--fe-transition);
}
@media (hover: hover) {
  .fe-gender__cta:hover { color: var(--fe-gold); }
}

/* ============================================
   VALUE PROPS
   ============================================ */
.fe-props {
  background: var(--fe-off-black);
  border-top: 1px solid rgba(201,169,110,0.1);
  border-bottom: 1px solid rgba(201,169,110,0.1);
  padding: 64px 20px;
}
.fe-props__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 24px;
}
.fe-prop {
  text-align: center;
}
.fe-prop__icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 18px;
  transition: border-color var(--fe-transition), background var(--fe-transition);
}
@media (hover: hover) {
  .fe-prop:hover .fe-prop__icon {
    border-color: var(--fe-gold);
    background: rgba(201,169,110,0.06);
  }
}
.fe-prop__title {
  font-family: var(--fe-font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--fe-white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.fe-prop__desc {
  font-family: var(--fe-font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--fe-white-50);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* ============================================
   REVIEWS
   ============================================ */
.fe-reviews {
  background: var(--fe-black);
  padding: 64px 16px;
}
.fe-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-bottom: 40px;
}
.fe-review-card {
  background: var(--fe-off-black);
  padding: 28px 22px;
  transition: background var(--fe-transition);
}
@media (hover: hover) {
  .fe-review-card:hover { background: #181818; }
}
.fe-review__stars {
  color: var(--fe-gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.fe-review__text {
  font-family: var(--fe-font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 20px;
}
.fe-review__product {
  font-family: var(--fe-font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fe-review__author {
  font-family: var(--fe-font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--fe-white-50);
  letter-spacing: 0.04em;
}
.fe-review__verified {
  font-family: var(--fe-font-body);
  font-size: 10px;
  color: rgba(201,169,110,0.5);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ============================================
   EMAIL CAPTURE
   ============================================ */
.fe-email {
  background: var(--fe-dark);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fe-email::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 140vw);
  height: min(500px, 140vw);
  background: radial-gradient(ellipse, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.fe-email__content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}
.fe-email__title {
  font-family: var(--fe-font-display);
  font-size: clamp(34px, 8vw, 52px);
  font-weight: 300;
  color: var(--fe-white);
  line-height: 1.15;
  margin-bottom: 14px;
}
.fe-email__title em {
  font-style: italic;
  color: var(--fe-gold-light);
}
.fe-email__sub {
  font-family: var(--fe-font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--fe-white-50);
  line-height: 1.7;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}
.fe-email__sub strong {
  color: var(--fe-gold);
  font-weight: 400;
}
.fe-email__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 420px;
  margin: 0 auto 14px;
}
.fe-email__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 16px 20px;
  font-family: var(--fe-font-body);
  font-size: 13px;
  color: var(--fe-white);
  outline: none;
  transition: border-color var(--fe-transition);
  -webkit-appearance: none;
}
.fe-email__input::placeholder { color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }
.fe-email__input:focus { border-color: var(--fe-gold); }
.fe-email__submit {
  background: var(--fe-gold);
  color: var(--fe-black);
  padding: 16px 24px;
  font-family: var(--fe-font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--fe-transition);
  margin-top: -1px;
}
.fe-email__submit:active { background: var(--fe-gold-light); }
@media (hover: hover) {
  .fe-email__submit:hover { background: var(--fe-gold-light); }
}
.fe-email__fine {
  font-family: var(--fe-font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.07em;
}

/* ============================================
   FOOTER
   ============================================ */
.fe-footer {
  background: #060606;
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 56px 20px 32px;
}
.fe-footer__brand {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.fe-footer__logo {
  font-family: var(--fe-font-display);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fe-white);
  margin-bottom: 12px;
}
.fe-footer__tagline {
  font-family: var(--fe-font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  max-width: 320px;
}
.fe-footer__email {
  font-family: var(--fe-font-body);
  font-size: 12px;
  color: var(--fe-gold);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color var(--fe-transition);
}
.fe-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.fe-footer__col-title {
  font-family: var(--fe-font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fe-gold);
  margin-bottom: 18px;
}
.fe-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fe-footer__links a {
  font-family: var(--fe-font-body);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--fe-transition);
}
@media (hover: hover) {
  .fe-footer__links a:hover { color: var(--fe-white); }
}
.fe-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fe-footer__copy {
  font-family: var(--fe-font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.07em;
}
.fe-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fe-payment-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 9px;
  font-family: var(--fe-font-body);
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
  border-radius: 2px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fe-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--fe-ease), transform 0.7s var(--fe-ease);
}
.fe-reveal.fe-visible {
  opacity: 1;
  transform: translateY(0);
}
.fe-reveal-delay-1 { transition-delay: 0.1s; }
.fe-reveal-delay-2 { transition-delay: 0.2s; }
.fe-reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .fe-hero__content    { padding: 0 40px 64px; }
  .fe-hero__ctas       { flex-direction: row; }
  .fe-proof__quotes    { flex-direction: row; gap: 24px; }
  .fe-products-grid    { grid-template-columns: repeat(3, 1fr); }
  .fe-reviews__grid    { grid-template-columns: repeat(2, 1fr); }
  .fe-email__form      { flex-direction: row; }
  .fe-email__input     { flex: 1; }
  .fe-email__submit    { margin-top: 0; margin-left: -1px; }
  .fe-gender           { flex-direction: row; }
  .fe-gender__panel    { flex: 1; height: 60vw; max-height: 500px; }
  .fe-bestsellers      { padding: 80px 32px; }
  .fe-props            { padding: 80px 40px; }
  .fe-reviews          { padding: 80px 32px; }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .fe-hero__content    { padding: 0 80px 72px; max-width: 680px; }
  .fe-hero__overlay {
    background:
      linear-gradient(105deg,
        rgba(8,8,8,0.92) 0%,
        rgba(8,8,8,0.6) 50%,
        rgba(8,8,8,0.2) 100%
      );
  }
  .fe-proof {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 80px;
  }
  .fe-proof__rating    { margin-bottom: 0; padding-bottom: 0; border-bottom: none; flex-shrink: 0; }
  .fe-proof__divider   { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
  .fe-proof__quotes    { flex: 1; justify-content: flex-end; gap: 40px; }
  .fe-products-grid    { grid-template-columns: repeat(4, 1fr); }
  .fe-bestsellers      { padding: 100px 80px; }
  .fe-reviews__grid    { grid-template-columns: repeat(4, 1fr); }
  .fe-reviews          { padding: 100px 80px; }
  .fe-props__grid      { grid-template-columns: repeat(4, 1fr); }
  .fe-props            { padding: 100px 80px; }
  .fe-gender__panel    { height: 68vh; max-height: 600px; }
  .fe-gender__content  { bottom: 60px; left: 56px; }
  .fe-footer           { padding: 72px 80px 40px; }
  .fe-footer__brand    { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .fe-footer__inner    { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
  .fe-footer__cols     { display: contents; }
  .fe-footer__bottom   { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================
   SHARED UTILITY
   ============================================ */
@keyframes fe-slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fe-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
