@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── ROOT VARIABLES ─────────────────────────────────────────────────────── */
:root {
  --gold: #2D6A2D;
  --gold-light: #3D8C3D;
  --brand-black: #0A1A0A;
  --beige: #E8F0E8;
  --charcoal: #1A2E1A;
}

/* ── BASE ────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--brand-black);
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

/* ── UTILITY CLASSES ─────────────────────────────────────────────────────── */
.font-playfair { font-family: 'Playfair Display', Georgia, serif; }
.font-inter    { font-family: 'Inter', system-ui, sans-serif; }

.text-gold  { color: var(--gold); }
.bg-gold    { background-color: var(--gold); }
.border-gold { border-color: var(--gold); }
.text-brand-black { color: var(--brand-black); }
.bg-brand-black   { background-color: var(--brand-black); }
.bg-beige   { background-color: var(--beige); }
.text-charcoal { color: var(--charcoal); }

.section-padding { padding: 5rem 1.5rem; }
@media (min-width: 768px)  { .section-padding { padding: 5rem 3rem; } }
@media (min-width: 1024px) { .section-padding { padding: 7rem 5rem; } }

.gold-divider {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.gold-divider-left {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 1rem 0;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: .875rem 2rem;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, box-shadow .3s;
}
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

.btn-outline {
  display: inline-block;
  padding: .875rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-outline-white {
  display: inline-block;
  padding: .875rem 2rem;
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ── NAVBAR ──────────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .5s, box-shadow .5s;
}
#navbar.scrolled {
  background: rgba(10,26,10,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-link {
  position: relative;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--gold); }

/* ── HERO CAROUSEL ───────────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  user-select: none;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.hero-slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  pointer-events: none;
}
.hero-slide .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.hero-gold-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(45,106,45,.5); z-index: 20; }
.hero-content {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 2rem 6rem;
}
@media (min-width: 768px) { .hero-content { padding: 0 4rem 6rem; } }
@media (min-width: 1024px) { .hero-content { padding: 0 5rem 6rem; } }

.hero-tag {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .6875rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  max-width: 20rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  display: none;
}
@media (min-width: 640px) { .hero-subtitle { display: block; } }

.hero-btns { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .hero-btns { flex-direction: row; align-items: center; } }

/* Arrow buttons */
.hero-arrow {
  display: none;
  position: absolute; top: 50%; z-index: 30;
  transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
  color: #fff;
  cursor: pointer;
  transition: background .2s;
}
.hero-arrow:hover { background: rgba(255,255,255,.25); }
@media (min-width: 768px) { .hero-arrow { display: flex; } }
#hero-prev { left: 1rem; }
#hero-next { right: 1rem; }

/* Dots */
.hero-dots { position: absolute; bottom: 1.5rem; left: 2rem; z-index: 30; display: flex; gap: .625rem; align-items: center; }
@media (min-width: 768px) { .hero-dots { left: 4rem; } }
.hero-dot {
  width: .375rem; height: .375rem;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active { width: 1.75rem; height: 3px; border-radius: 0; background: var(--gold); }

/* Progress bar */
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,.1); z-index: 30; }
.hero-progress-bar { height: 100%; background: var(--gold); width: 0; }

/* ── MARQUEE STRIP ───────────────────────────────────────────────────────── */
.marquee-strip { background: var(--gold); color: #fff; overflow: hidden; padding: .75rem 0; }
.marquee-inner { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; }
.marquee-inner span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  padding: 0 2rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── TRENDING CAROUSEL ───────────────────────────────────────────────────── */
.trending-track {
  display: flex;
  will-change: transform;
}
.trending-card {
  flex-shrink: 0;
  width: 40vw;
  padding: 0 .375rem;
}
@media (min-width: 768px) { .trending-card { width: 22vw; } }
.trending-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--beige);
}
@media (min-width: 768px) { .trending-img { height: 300px; } }
.trending-img img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ── FLOWER GRID ─────────────────────────────────────────────────────────── */
.flower-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .flower-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .flower-grid { grid-template-columns: repeat(4, 1fr); } }

.flower-card { background: #fff; overflow: hidden; cursor: pointer; }
.flower-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige);
}
.flower-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease-out;
  display: block;
}
.flower-card:hover .flower-card-img img { transform: scale(1.05); }

.flower-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 10;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .5625rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .125rem .5rem;
}
.badge-new      { background: var(--brand-black); color: #fff; }
.badge-trending { background: var(--gold); color: #fff; }
.badge-popular  { background: #228B22; color: #fff; }
.badge-seasonal { background: #1A5C1A; color: #fff; }
.badge-exotic   { background: #1A4A1A; color: #fff; }
.badge-fragrant { background: var(--gold-light); color: #fff; }

.flower-quick-btn {
  position: absolute; top: .75rem; right: .75rem; z-index: 10;
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9);
  border: 1px solid #e5e7eb;
  opacity: 0;
  transition: opacity .2s, background .2s, color .2s;
  cursor: pointer;
}
.flower-card:hover .flower-quick-btn { opacity: 1; }
.flower-quick-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.flower-quick-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center; gap: .375rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .625rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  background: rgba(255,255,255,.95);
  color: var(--brand-black);
  padding: .75rem;
  transform: translateY(100%);
  transition: transform .3s;
  cursor: pointer;
}
.flower-card:hover .flower-quick-bar { transform: translateY(0); }
.flower-quick-bar:hover { background: var(--gold); color: #fff; }

.flower-info { padding: .75rem .25rem 1rem; }
.flower-category {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.flower-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--brand-black);
  line-height: 1.3;
  transition: color .15s;
}
.flower-card:hover .flower-title { color: var(--gold); }

/* ── QUICK VIEW MODAL ────────────────────────────────────────────────────── */
#quick-view {
  display: none;
  position: fixed; inset: 0; z-index: 50;
  background: #fff;
  overflow-y: auto;
  animation: fadeIn .25s ease-out both;
}
#quick-view.open { display: block; }

.qv-close {
  position: fixed; top: 1rem; right: 1rem; z-index: 60;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.qv-close:hover { background: var(--brand-black); color: #fff; }

.qv-breadcrumb {
  border-bottom: 1px solid #f3f4f6;
  padding: .75rem 1.5rem;
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  color: rgba(26,46,26,.5);
}
.qv-breadcrumb a { text-decoration: none; color: inherit; transition: color .2s; }
.qv-breadcrumb a:hover { color: var(--gold); }

.qv-body { max-width: 72rem; margin: 0 auto; padding: 2rem 1rem; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .qv-body { flex-direction: row; gap: 3.5rem; padding: 2rem; } }

.qv-img-wrap { flex-shrink: 0; }
@media (min-width: 768px) { .qv-img-wrap { width: 48%; } }
.qv-img-inner { position: relative; aspect-ratio: 3/4; background: var(--beige); overflow: hidden; }
.qv-img-inner img { width: 100%; height: 100%; object-fit: contain; display: block; }

.qv-details { flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.qv-category {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .625rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
}
.qv-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--brand-black);
  line-height: 1.2;
}
.qv-gold-line { width: 2.5rem; height: 1px; background: var(--gold); }
.qv-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  color: rgba(26,46,26,.7);
  line-height: 1.7;
}
.qv-symbolism {
  background: var(--beige);
  border-left: 2px solid var(--gold);
  padding: .75rem 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  color: rgba(26,46,26,.7);
  font-style: italic;
  line-height: 1.6;
}

.qv-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}
.qv-wa-btn:hover { background: var(--brand-black); }

.qv-contact-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .75rem;
  border: 1px solid var(--brand-black);
  color: var(--brand-black);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.qv-contact-btn:hover { background: var(--brand-black); color: #fff; }

.qv-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .625rem;
  color: rgba(26,46,26,.4);
  text-align: center;
}

/* Accordion */
.qv-tabs { border-top: 1px solid #f3f4f6; margin-top: .5rem; }
.qv-tab-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brand-black);
  background: none;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: color .15s;
}
.qv-tab-btn:hover { color: var(--gold); }
.qv-tab-content {
  display: none;
  padding-bottom: 1rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  color: rgba(26,46,26,.7);
  line-height: 1.7;
  white-space: pre-line;
}
.qv-tab-content.open { display: block; }

/* Related */
.qv-related { border-top: 1px solid #f3f4f6; background: var(--beige); padding: 3rem 1rem; }
.qv-related-inner { max-width: 72rem; margin: 0 auto; }
.qv-related-strip { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.qv-related-strip::-webkit-scrollbar { display: none; }
.qv-related-card {
  flex-shrink: 0; width: 10rem;
  background: none; border: none; cursor: pointer; text-align: left;
}
@media (min-width: 768px) { .qv-related-card { width: 12rem; } }
.qv-related-img { aspect-ratio: 3/4; overflow: hidden; background: #fff; margin-bottom: .5rem; position: relative; }
.qv-related-img img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .5s; }
.qv-related-card:hover .qv-related-img img { transform: scale(1.05); }

/* ── TESTIMONIAL ─────────────────────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-bottom: 2px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: .875rem; margin-bottom: 1rem; }
.testimonial-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--brand-black);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(26,46,26,.5);
}
.testimonial-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: .25rem;
}

/* ── WHATSAPP FAB ─────────────────────────────────────────────────────────── */
#wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 3.5rem; height: 3.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: background .2s, transform .2s;
}
#wa-fab:hover { background: #1ebe5d; transform: scale(1.1); }

/* ── MOBILE MENU ─────────────────────────────────────────────────────────── */
#mobile-menu {
  display: none;
  background: rgba(10,26,10,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(45,106,45,.2);
  padding: 2rem 1.5rem;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  padding: .75rem 0;
  transition: color .2s;
}
#mobile-menu a.active, #mobile-menu a:hover { color: var(--gold); }

/* ── KEYFRAMES ───────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroProgressAnim {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--brand-black), rgba(10,26,10,.5), transparent);
}
.page-hero-content {
  position: relative; z-index: 10;
  max-width: 80rem; margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* ── PROCESS STEPS ───────────────────────────────────────────────────────── */
.step-number-big {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  color: rgba(45,106,45,.15);
  line-height: 1;
}
.step-number-placeholder {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 8rem;
  color: rgba(45,106,45,.08);
}

/* ── CONTACT FORM ────────────────────────────────────────────────────────── */
.form-field { border: none; border-bottom: 1px solid rgba(26,46,26,.2); padding: .5rem 0; width: 100%; font-family: 'Inter', system-ui, sans-serif; font-size: .875rem; background: transparent; outline: none; transition: border-color .2s; }
.form-field:focus { border-bottom-color: var(--gold); }
.form-label { display: block; font-family: 'Inter', system-ui, sans-serif; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(26,46,26,.6); margin-bottom: .5rem; }

/* ── COLLECTION CARD ─────────────────────────────────────────────────────── */
.coll-card img { transition: transform .7s; }
.coll-card:hover img { transform: scale(1.05); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer a { text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--gold); }
