/*
Theme Name: FLIX CYCLE
Theme URI: https://flixcycle.com
Description: FLIX CYCLE — Modern Hair Oiling. Editorial luxury D2C ecommerce theme.
Author: FLIX CYCLE
Version: 2.1.1
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: All Rights Reserved
License URI: https://flixcycle.com/license
Text Domain: flixcycle
*/

:root {
  --fc-white: #FFFFFF;
  --fc-warm: #FAFAF8;
  --fc-canvas: #F7F5F2;
  --fc-lavender: #A898D8;
  --fc-lav-mid: #C4B8E8;
  --fc-lav-light: #EAE5F8;
  --fc-lav-pale: #F5F2FB;
  --fc-ink: #17151C;
  --fc-ink-80: rgba(23,21,28,0.80);
  --fc-ink-50: rgba(23,21,28,0.50);
  --fc-ink-20: rgba(23,21,28,0.20);
  --fc-ink-08: rgba(23,21,28,0.08);
  --fc-serif: 'Instrument Serif', Georgia, serif;
  --fc-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --fc-header-h: 72px;
  --fc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fc-ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --fc-ease-slow: cubic-bezier(0.77, 0, 0.175, 1);
  --fc-glass: rgba(250,250,248,0.88);
  --fc-glass-blur: saturate(1.8) blur(24px);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
html {
  font-family: var(--fc-sans);
  background-color: var(--fc-warm);
  color: var(--fc-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul[role='list'], ol[role='list'] {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img, picture {
  max-width: 100%;
  display: block;
}
input, button, textarea, select {
  font: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* Typography */
.fc-display { font-family: var(--fc-serif); font-size: clamp(3rem, 6.5vw, 6.5rem); line-height: 1; font-weight: 400; }
.fc-h1 { font-family: var(--fc-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; font-weight: 400; }
.fc-h2 { font-family: var(--fc-serif); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.1; font-weight: 400; }
.fc-h3 { font-family: var(--fc-serif); font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.2; font-weight: 400; }
.fc-h4 { font-family: var(--fc-sans); font-size: 1.25rem; line-height: 1.3; font-weight: 500; }
.fc-eyebrow { font-family: var(--fc-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.fc-label { font-family: var(--fc-sans); font-size: 0.875rem; font-weight: 500; }
.fc-body-lg { font-family: var(--fc-sans); font-size: 1.125rem; line-height: 1.6; }
.fc-body { font-family: var(--fc-sans); font-size: 1rem; line-height: 1.5; }
.fc-body-sm { font-family: var(--fc-sans); font-size: 0.875rem; line-height: 1.5; }
.fc-caption { font-family: var(--fc-sans); font-size: 0.75rem; color: var(--fc-ink-50); }

/* Layout Utils */
.fc-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
.fc-section {
  padding: 120px 0;
}
.fc-section--sm {
  padding: 80px 0;
}
.fc-divider {
  height: 1px;
  background-color: var(--fc-ink-08);
  width: 100%;
}

/* Button System */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  border-radius: 0;
  font-family: var(--fc-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--fc-ease);
  text-decoration: none;
}
.fc-btn--primary {
  background-color: var(--fc-ink);
  color: var(--fc-white);
  border: 1px solid var(--fc-ink);
}
.fc-btn--primary:hover {
  background-color: var(--fc-ink-80);
  border-color: var(--fc-ink-80);
}
.fc-btn--ghost {
  background-color: transparent;
  color: var(--fc-ink);
  border: 1px solid var(--fc-ink);
}
.fc-btn--ghost:hover {
  background-color: var(--fc-ink-08);
}
.fc-btn--lavender {
  background-color: var(--fc-lavender);
  color: var(--fc-white);
  border: 1px solid var(--fc-lavender);
}
.fc-btn--lavender:hover {
  background-color: var(--fc-lav-mid);
  border-color: var(--fc-lav-mid);
}
.fc-btn--full {
  width: 100%;
}
.fc-btn--tall {
  height: 60px;
}
.fc-btn--sm {
  height: 36px;
  padding: 0 16px;
  font-size: 0.75rem;
}

/* Announcement */
.fc-announce {
  height: 36px;
  background-color: var(--fc-ink);
  color: var(--fc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Header */
.fc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--fc-header-h);
  background: var(--fc-glass);
  backdrop-filter: var(--fc-glass-blur);
  -webkit-backdrop-filter: var(--fc-glass-blur);
  border-bottom: 1px solid var(--fc-ink-08);
}
.fc-header__inner {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  height: 100%;
  padding: 0 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.fc-logo {
  display: flex;
  flex-direction: column;
}
.fc-logo__mark {
  font-family: var(--fc-serif);
  font-size: 1.5rem;
  line-height: 1;
}
.fc-logo__sub {
  font-family: var(--fc-sans);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-top: 4px;
}
.fc-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.fc-nav__link {
  font-family: var(--fc-sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 0;
}
.fc-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--fc-ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--fc-ease);
}
.fc-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.fc-header__actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
.fc-header__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.2s;
}
.fc-header__icon:hover {
  background-color: var(--fc-ink-08);
}
.fc-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--fc-lavender);
  color: var(--fc-white);
  font-size: 0.6rem;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-hamburger {
  display: none;
}

/* Mobile Nav Sheet */
.fc-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
}
.fc-sheet.is-open {
  pointer-events: auto;
}
.fc-sheet__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--fc-ink-50);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s var(--fc-ease);
}
.fc-sheet.is-open .fc-sheet__backdrop {
  opacity: 1;
}
.fc-sheet__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--fc-warm);
  transform: translateX(-100%);
  transition: transform 0.5s var(--fc-ease);
  display: flex;
  flex-direction: column;
}
.fc-sheet.is-open .fc-sheet__panel {
  transform: translateX(0);
}
.fc-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--fc-ink-08);
}
.fc-sheet__nav {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fc-sheet__link {
  font-family: var(--fc-serif);
  font-size: 2rem;
}
.fc-sheet__utils {
  margin-top: auto;
  padding: 24px;
  background: var(--fc-canvas);
}

/* Search Overlay */
.fc-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 150;
  background: var(--fc-glass);
  backdrop-filter: var(--fc-glass-blur);
  -webkit-backdrop-filter: var(--fc-glass-blur);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--fc-ease);
}
.fc-search.is-open {
  opacity: 1;
  pointer-events: auto;
}
.fc-search__box {
  width: 100%;
  max-width: 800px;
  margin: 100px auto 0;
  padding: 0 48px;
}
.fc-search__inner {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--fc-ink);
}
.fc-search__input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--fc-serif);
  font-size: 3rem;
  padding: 16px 0;
  outline: none;
  color: var(--fc-ink);
}
.fc-search__close {
  position: absolute;
  top: 32px;
  right: 48px;
}

/* Cart Drawer */
.fc-cart-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
}
.fc-cart-drawer.is-open {
  pointer-events: auto;
}
.fc-cart-drawer__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--fc-ink-50);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s var(--fc-ease);
}
.fc-cart-drawer.is-open .fc-cart-drawer__backdrop {
  opacity: 1;
}
.fc-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--fc-warm);
  transform: translateX(100%);
  transition: transform 0.5s var(--fc-ease);
  display: flex;
  flex-direction: column;
}
.fc-cart-drawer.is-open .fc-cart-drawer__panel {
  transform: translateX(0);
}
.fc-cart-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--fc-ink-08);
}
.fc-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.fc-cart-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.fc-cart-drawer__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--fc-canvas);
}
.fc-cart-drawer__meta {
  display: flex;
  flex-direction: column;
}
.fc-cart-drawer__foot {
  padding: 24px;
  background: var(--fc-canvas);
  border-top: 1px solid var(--fc-ink-08);
}

/* Qty Stepper */
.fc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--fc-ink-20);
  height: 36px;
}
.fc-qty__btn {
  width: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-qty__btn:hover {
  background: var(--fc-ink-08);
}
.fc-qty__val {
  width: 36px;
  text-align: center;
  font-size: 0.875rem;
  border: none;
  background: transparent;
}

/* Hero (Split Editorial) */
.fc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  background: var(--fc-canvas);
}
.fc-hero__left {
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.fc-hero__right {
  position: relative;
  overflow: hidden;
}
.fc-hero__title {
  margin-bottom: 24px;
}
.fc-hero__eyebrow {
  margin-bottom: 16px;
}
.fc-hero__body {
  max-width: 480px;
  margin-bottom: 48px;
}
.fc-hero__cta {
  display: flex;
  gap: 16px;
}
.fc-hero__ritual {
  margin-top: 80px;
  display: flex;
  gap: 32px;
}
.fc-hero__stage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

/* Discovery Strip */
.fc-disc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--fc-ink-08);
  border-bottom: 1px solid var(--fc-ink-08);
  background: var(--fc-warm);
}
.fc-disc__item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--fc-ink-08);
  transition: background-color 0.3s var(--fc-ease);
}
.fc-disc__item:last-child {
  border-right: none;
}
.fc-disc__item:hover {
  background-color: var(--fc-lav-pale);
}
.fc-disc__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fc-lav-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Problem Section */
.fc-problem {
  background-color: var(--fc-ink);
  color: var(--fc-white);
}
.fc-problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.fc-problem__item {
  padding: 32px;
  border: 1px solid var(--fc-ink-80);
  transition: border-color 0.3s var(--fc-ease);
}
.fc-problem__item:hover {
  border-color: var(--fc-lav-mid);
}

/* Cycle Section */
.fc-cycle-section {
  background: var(--fc-canvas);
}
.fc-cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fc-cycle-step {
  padding: 32px;
  background: var(--fc-warm);
  transition: background-color 0.3s var(--fc-ease);
}
.fc-cycle-step:hover {
  background-color: var(--fc-lav-pale);
}
.fc-cycle-num {
  font-family: var(--fc-serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--fc-lav-mid);
  display: block;
  margin-bottom: 16px;
}

/* Product Hero */
.fc-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 48px;
  max-width: 1440px;
  margin: 0 auto;
}
.fc-product-hero__visual {
  background: var(--fc-canvas);
  position: relative;
}
.fc-product-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Product Cards */
.fc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.fc-card {
  position: relative;
  display: block;
  group: product;
}
.fc-card__visual {
  position: relative;
  overflow: hidden;
  background: var(--fc-canvas);
  margin-bottom: 16px;
}
.fc-card__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--fc-ease);
}
.fc-card:hover .fc-card__image {
  transform: scale(1.05);
}
.fc-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--fc-white);
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.fc-card__wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--fc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--fc-ease);
  z-index: 2;
}
.fc-card:hover .fc-card__wishlist {
  opacity: 1;
}
.fc-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s var(--fc-ease);
  z-index: 2;
}
.fc-card:hover .fc-card__quick-add {
  transform: translateY(0);
}
.fc-card__info {
  text-align: center;
}
.fc-card__cat {
  color: var(--fc-lavender);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}
.fc-card__name {
  font-family: var(--fc-serif);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.fc-card__price {
  font-family: var(--fc-serif);
  font-size: 1.25rem;
  color: var(--fc-ink-80);
}

/* Ingredients */
.fc-ingredients {
  background: var(--fc-canvas);
}
.fc-ingr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.fc-ingr-item {
  position: relative;
  padding-left: 24px;
  transition: transform 0.3s var(--fc-ease);
}
.fc-ingr-item::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 14px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s var(--fc-ease);
}
.fc-ingr-item:hover {
  transform: translateX(8px);
}
.fc-ingr-item:hover::before {
  opacity: 1;
  transform: scale(1);
}
.fc-ingr-name {
  font-family: var(--fc-serif);
  font-size: 2rem;
  margin-bottom: 8px;
}
.fc-ingr-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--fc-lavender);
  padding-bottom: 2px;
  margin-bottom: 12px;
}

/* Trust Band */
.fc-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fc-ink-08);
  border-bottom: 1px solid var(--fc-ink-08);
  background: var(--fc-warm);
}
.fc-trust > div {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--fc-ink-08);
}
.fc-trust > div:last-child {
  border-right: none;
}

/* Reviews */
.fc-reviews {
  padding: 120px 0;
  background: var(--fc-warm);
}
.fc-reviews__empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--fc-canvas);
  border: 1px dashed var(--fc-ink-20);
}

/* Brand Story */
.fc-story {
  background: var(--fc-lav-pale);
}
.fc-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fc-story__quote {
  border-left: 4px solid var(--fc-lavender);
  padding-left: 32px;
  margin: 32px 0;
  font-family: var(--fc-serif);
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Final CTA */
.fc-final-cta {
  background: var(--fc-ink);
  color: var(--fc-white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 24px;
}
.fc-final-cta::before,
.fc-final-cta::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--fc-lavender) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.fc-final-cta::before {
  top: -300px;
  left: -200px;
}
.fc-final-cta::after {
  bottom: -300px;
  right: -200px;
}

/* Footer */
.fc-footer {
  background: var(--fc-ink);
  color: var(--fc-white);
  padding-top: 80px;
}
.fc-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 0 48px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.fc-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.fc-footer__social-link:hover {
  opacity: 1;
}
.fc-footer__bottom {
  border-top: 1px solid var(--fc-ink-80);
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--fc-ink-50);
}
.fc-footer__payment-icon {
  height: 24px;
  opacity: 0.5;
}

/* Status Badges */
.fc-badge {
  display: inline-flex;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fc-badge--processing { background: var(--fc-canvas); color: var(--fc-ink); }
.fc-badge--shipped { background: var(--fc-lav-light); color: var(--fc-ink); }
.fc-badge--delivered { background: var(--fc-lavender); color: var(--fc-white); }
.fc-badge--cancelled { background: #fee2e2; color: #991b1b; }
.fc-badge--return { background: var(--fc-ink-08); color: var(--fc-ink); }
.fc-badge--new { background: var(--fc-ink); color: var(--fc-white); }

/* Timeline */
.fc-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.fc-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 11px;
  width: 2px;
  height: 100%;
  background: var(--fc-ink-08);
}
.fc-timeline__step {
  position: relative;
  padding-left: 48px;
}
.fc-timeline__dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fc-warm);
  border: 2px solid var(--fc-ink-20);
  z-index: 1;
}
.fc-timeline__step[data-state="done"] .fc-timeline__dot {
  background: var(--fc-ink);
  border-color: var(--fc-ink);
}
.fc-timeline__step[data-state="current"] .fc-timeline__dot {
  background: var(--fc-lavender);
  border-color: var(--fc-lavender);
  box-shadow: 0 0 0 4px var(--fc-lav-light);
}

/* Account / MY FLIX */
.fc-account {
  padding: 80px 0;
  background: var(--fc-canvas);
  min-height: 80vh;
}
.fc-account__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.fc-account__sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fc-account__nav-link {
  font-family: var(--fc-sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  transition: all 0.2s var(--fc-ease);
}
.fc-account__nav-link:hover, .fc-account__nav-link.is-active {
  background: var(--fc-white);
  box-shadow: 0 2px 8px var(--fc-ink-08);
}
.fc-order-card {
  background: var(--fc-white);
  padding: 32px;
  border: 1px solid var(--fc-ink-08);
  margin-bottom: 24px;
}

/* Order Lifecycle */
.fc-lifecycle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.fc-lifecycle__card {
  background: var(--fc-warm);
  padding: 24px;
  border: 1px solid var(--fc-ink-08);
}

/* Forms */
.fc-form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.fc-form-label {
  font-family: var(--fc-sans);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.fc-form-input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--fc-ink-20);
  background: var(--fc-white);
  font-family: var(--fc-sans);
  transition: border-color 0.3s var(--fc-ease);
}
.fc-form-input:focus {
  outline: none;
  border-bottom: 2px solid var(--fc-ink);
}

/* Cart Page */
.fc-cart-page {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.fc-cart-table {
  width: 100%;
  border-collapse: collapse;
}
.fc-cart-table th, .fc-cart-table td {
  padding: 24px;
  border-bottom: 1px solid var(--fc-ink-08);
  text-align: left;
}
.fc-cart-summary {
  background: var(--fc-canvas);
  padding: 32px;
  margin-top: 48px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
}

/* Checkout */
.fc-checkout-header {
  padding: 32px 48px;
  border-bottom: 1px solid var(--fc-ink-08);
  text-align: center;
}
.fc-checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.fc-payment-option {
  border: 1px solid var(--fc-ink-20);
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Admin */
.fc-admin {
  padding: 48px;
}
.fc-admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.fc-admin-stat {
  background: var(--fc-white);
  padding: 24px;
  border: 1px solid var(--fc-ink-08);
  border-radius: 4px;
}
.fc-admin-table {
  width: 100%;
  background: var(--fc-white);
  border: 1px solid var(--fc-ink-08);
  border-collapse: collapse;
}
.fc-admin-table th, .fc-admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--fc-ink-08);
  text-align: left;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--fc-ink);
  color: var(--fc-white);
  padding: 8px;
  z-index: 100;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 2px solid var(--fc-lavender);
  outline-offset: 2px;
}

/* Print */
@media print {
  .fc-header, .fc-footer, .fc-nav, .fc-sheet, .fc-search, .fc-cart-drawer {
    display: none !important;
  }
}

/* Breakpoints */
@media (max-width: 1440px) {
  /* No specific overrides currently requested for 1440, it's just max-width bounds */
}
@media (max-width: 1024px) {
  .fc-hero, .fc-product-hero, .fc-problem__inner, .fc-story__inner, .fc-checkout-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fc-disc { grid-template-columns: repeat(3, 1fr); }
  .fc-cards, .fc-cycle-grid, .fc-trust, .fc-admin-stats, .fc-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-account__layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .fc-header__inner { grid-template-columns: 1fr auto; }
  .fc-nav { display: none; }
  .fc-hamburger { display: flex; }
}
@media (max-width: 768px) {
  .fc-ingr-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-wrap { padding: 0 24px; }
  .fc-hero__left, .fc-problem__inner, .fc-product-hero, .fc-cart-page { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .fc-disc { grid-template-columns: repeat(2, 1fr); }
  .fc-cards, .fc-cycle-grid, .fc-trust, .fc-admin-stats, .fc-footer__grid {
    grid-template-columns: 1fr;
  }
  .fc-ingr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fc-disc { grid-template-columns: 1fr; }
  .fc-hero__title { font-size: 3rem; }
}
@media (max-width: 390px) {
  .fc-btn { font-size: 0.75rem; padding: 0 16px; }
}
