/* Appily twentythree — Fruité Furlite-inspired chrome */
:root {
  --gold: #C9A227;
  --gold-dark: #A8861E;
  --gold-light: #E8D48B;
  --charcoal: #1C1C1C;
  --ink: #2C2C2C;
  --ink-soft: #5A5A5A;
  --muted: #8C8C8C;
  --cream: #FDFBF7;
  --white: #ffffff;
  --gray-bg: #F5F5F3;
  --line: #E8E6E2;
  --sale: #D64545;
  --star: #C9A227;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --transition: 0.25s ease;
}

body.ft-store {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
}

/* ── Top bar ── */
.ft-topbar {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 500;
}
.ft-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.ft-topbar-contact, .ft-topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.ft-topbar-contact a, .ft-topbar-links a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ft-topbar-contact a:hover, .ft-topbar-links a:hover { opacity: 0.8; }
.ft-topbar-icon { font-size: 0.85rem; }

/* ── Header ── */
.ft-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.ft-header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
}
.ft-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ft-brand-mark {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: -2px;
  font-weight: 700;
}
.ft-brand-name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.ft-nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.ft-nav-link {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding: 4px 0;
}
.ft-nav-link:hover, .ft-nav-link.is-active { color: var(--charcoal); }
.ft-nav-link.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold);
}
.ft-nav-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sale);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0;
  white-space: nowrap;
}
.ft-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-currency {
  background: var(--gold);
  color: var(--charcoal);
  border: 0;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
}
.ft-sign-in {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.ft-sign-in:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}
.ft-sign-in.is-signed-in {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}
.ft-sign-in.is-signed-in:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--cream);
}
.ft-sign-in-icon {
  flex-shrink: 0;
}
.ft-action {
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  padding: 4px;
  text-decoration: none;
  display: inline-flex;
}
.ft-action:hover { color: var(--gold-dark); }
.ft-cart-count {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.ft-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.ft-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
}
.ft-search-panel {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  background: var(--gray-bg);
}
.ft-search-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.ft-search-form input {
  flex: 1;
  border: 1px solid var(--line);
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius);
}
.ft-search-form button {
  background: var(--gold);
  color: var(--charcoal);
  border: 0;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
}
.ft-nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.ft-nav-mobile[hidden] { display: none !important; }
.ft-nav-mobile-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ft-nav-mobile-head strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.ft-drawer-close {
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.ft-nav-mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.ft-nav-mobile-link.is-active { color: var(--gold-dark); font-weight: 600; }

/* ── Hero ── */
.ft-hero {
  background: var(--white);
  padding: 60px 0 80px;
  overflow: hidden;
}
.ft-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ft-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--charcoal);
}
.ft-hero-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 0 28px;
  line-height: 1.7;
}
.ft-hero-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.btn-ft {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-ft:hover { background: var(--gold-dark); color: #fff; }
.ft-hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
}
.ft-hero-dot {
  width: 32px;
  height: 3px;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  border-radius: 2px;
}
.ft-hero-dot.is-active { background: var(--gold); }
.ft-hero-visual {
  position: relative;
  min-height: 420px;
}
.ft-hero-slide {
  display: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ft-hero-slide.is-active { display: block; }
.ft-hero-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ── Category icons ── */
.ft-categories {
  padding: 50px 0 60px;
  background: var(--cream);
}
.ft-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  margin: 0 0 12px;
  font-weight: 600;
}
.ft-section-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.ft-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.ft-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ft-cat-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}
.ft-cat-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
}
.ft-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ft-cat-icon span {
  font-size: 1.6rem;
  color: var(--gold);
}
.ft-cat-card strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ── Product sections ── */
.ft-products {
  padding: 60px 0;
  background: var(--white);
}
.ft-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.ft-product-card {
  text-align: center;
}
.ft-product-img {
  display: block;
  background: var(--gray-bg);
  aspect-ratio: 1;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.ft-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ft-product-card:hover .ft-product-img img { transform: scale(1.04); }
.ft-product-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sale);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 8px;
}
.ft-product-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.ft-product-card h3 a { color: var(--charcoal); }
.ft-product-card h3 a:hover { color: var(--gold-dark); }
.ft-product-price {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.ft-product-price .old {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 6px;
}
.ft-product-price .sale { color: var(--gold-dark); font-weight: 600; }

/* ── Testimonials ── */
.ft-testimonials {
  padding: 70px 0;
  background: #F0EBE3;
}
.ft-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.ft-testimonial-card {
  background: var(--white);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow);
}
.ft-testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.ft-testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: var(--line);
  font-family: var(--font-display);
  line-height: 1;
}
.ft-testimonial-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 24px;
}
.ft-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ft-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-bg);
  overflow: hidden;
}
.ft-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ft-testimonial-name {
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 0.9rem;
}
.ft-testimonial-role {
  font-size: 0.78rem;
  color: var(--muted);
}
.ft-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.ft-testimonial-dot {
  width: 28px;
  height: 4px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.ft-testimonial-dot.is-active { background: var(--gold); }

/* ── Gallery strip ── */
.ft-gallery {
  padding: 50px 0;
  background: var(--cream);
}
.ft-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ft-gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}
.ft-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ft-gallery-item:hover img { transform: scale(1.06); }

/* ── Benefits ── */
.ft-benefits {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.ft-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}
.ft-benefit-icon { font-size: 1.4rem; display: block; margin-bottom: 8px; }
.ft-benefit strong { display: block; font-size: 0.82rem; margin-bottom: 4px; }
.ft-benefit span { font-size: 0.72rem; color: var(--muted); }

/* ── Footer ── */
.ft-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.ft-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.ft-footer-logo {
  font-family: var(--font-body);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 16px;
}
.ft-footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.ft-footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}
.ft-footer-col a, .ft-footer-col p {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  line-height: 1.5;
}
.ft-footer-col a:hover { color: var(--gold); }
.ft-footer-pin { margin-right: 6px; }
.ft-payment-icons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.ft-payment-icons span {
  font-size: 0.65rem;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
}
.ft-footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.ft-back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 90;
  transition: background var(--transition);
}
.ft-back-top:hover { background: var(--gold); border-color: var(--gold); }
.ft-back-top[hidden] { display: none; }

/* ── Policy page ── */
.ft-page-hero {
  background: var(--white);
  padding: 48px 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.ft-page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0 0 8px;
}
.ft-page-hero .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Responsive overrides in responsive.css */
