/* ============================================================
   SK FLAMES — Site Stylesheet
   Brand palette (from SK Flames Brand Guidelines v1.0):
   Rose Gold #E7B79B · Hot Pink #E91E63 · Deep Pink #CE224F
   Copper #A84232 · Gold Foil #D4AF37
   Type: Cormorant Garamond (headings) · Montserrat (body)
   ============================================================ */

:root {
  --rose-gold: #E7B79B;
  --rose-gold-light: #F3DCCB;
  --hot-pink: #E91E63;
  --deep-pink: #CE224F;
  --copper: #A84232;
  --gold: #D4AF37;
  --ivory: #FBF7F3;
  --blush: #F9EDE6;
  --charcoal: #2B2226;
  --soft-gray: #7A6E72;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --script: 'Great Vibes', cursive;
  --shadow-soft: 0 8px 30px rgba(43, 34, 38, 0.08);
  --shadow-lift: 0 14px 40px rgba(43, 34, 38, 0.14);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--deep-pink); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--hot-pink); }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.2; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.script-accent {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--deep-pink);
  font-weight: 400;
}

.lead { font-size: 1.12rem; color: var(--soft-gray); max-width: 640px; }

/* ---------- Layout ---------- */

.container { width: min(1160px, 92%); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section--blush { background: var(--blush); }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--dark h2, .section--dark h3 { color: var(--ivory); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-head .lead { margin: 1rem auto 0; }

.divider {
  width: 64px; height: 2px; border: 0; margin: 1.4rem auto;
  background: linear-gradient(90deg, var(--rose-gold), var(--deep-pink));
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(251, 247, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(231, 183, 155, 0.35);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: .85rem 0; }

.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 64px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: .78rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal);
  padding: .4rem 0; border-bottom: 1px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--deep-pink); border-bottom-color: var(--rose-gold); }

.cart-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: none; border: 1px solid var(--rose-gold); border-radius: 999px;
  padding: .45rem 1.1rem; cursor: pointer;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--charcoal);
  transition: all .25s ease;
}
.cart-btn:hover { background: var(--rose-gold); color: var(--white); }
.snipcart-items-count { font-weight: 500; color: var(--deep-pink); }
.cart-btn:hover .snipcart-items-count { color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: .3s; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--sans); font-size: .78rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  padding: .95rem 2.4rem; border-radius: 999px;
  border: 1px solid transparent; transition: all .3s ease;
}
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--copper), var(--deep-pink) 55%, var(--hot-pink));
  box-shadow: 0 6px 18px rgba(206, 34, 79, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(206, 34, 79, 0.38); color: var(--white); }
.btn--ghost { color: var(--charcoal); border-color: var(--rose-gold); background: transparent; }
.btn--ghost:hover { background: var(--rose-gold); color: var(--white); }
.btn--light { color: var(--charcoal); background: var(--ivory); }
.btn--light:hover { background: var(--rose-gold-light); }

/* ---------- Hero ---------- */

.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: 6.5rem 0 7rem;
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(233, 30, 99, 0.09), transparent 60%),
    radial-gradient(ellipse 700px 460px at 8% 110%, rgba(231, 183, 155, 0.35), transparent 65%),
    var(--ivory);
}
.hero .script-accent { display: block; margin-bottom: .8rem; }
.hero h1 { max-width: 800px; margin: 0 auto 1.4rem; }
.hero .lead { margin: 0 auto 2.6rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-logo { height: 260px; width: auto; margin: 0 auto 2rem; }

/* ---------- Scent Cards ---------- */

.scent-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.scent-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.scent-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.scent-visual {
  height: 220px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.scent-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18));
}
.scent-visual .scent-mark {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: rgba(255,255,255,0.92); letter-spacing: .06em; z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25); text-align: center; padding: 0 1.4rem;
}

/* product photos */
.scent-visual.photo { height: auto; aspect-ratio: 1 / 1; }
.scent-visual.photo::after { display: none; }
.scent-visual.photo a { position: absolute; inset: 0; display: block; cursor: pointer; }

/* header cart link (was a button) */
.cart-btn { text-decoration: none; }

/* Melt Duo scent pickers */
.sk-duo select {
  width: 100%; padding: .7rem .9rem;
  border: 1px solid rgba(231,183,155,0.6); border-radius: var(--radius);
  font-family: var(--sans); font-size: .9rem; color: var(--charcoal);
  background: var(--ivory); cursor: pointer;
}
.sk-duo select:focus { outline: none; border-color: var(--deep-pink); }
.sk-duo .btn { text-align: center; }

/* Sold-out state */
.btn--soldout {
  background: #E4DBD4; color: #9A8E87; cursor: not-allowed;
  box-shadow: none; pointer-events: none;
}
.btn--soldout:hover { transform: none; box-shadow: none; }
.soldout-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--charcoal); color: var(--ivory);
  font-family: var(--sans); font-size: .64rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: 999px;
}
.scent-visual img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .45s ease;
}
.scent-card:hover .scent-visual img { transform: scale(1.04); }

/* per-scent gradients */
.visual--velvet { background: linear-gradient(140deg, #5C4033, #8B6248 55%, #D9B99B); }
.visual--linen { background: linear-gradient(140deg, #8FA58F, #B7C4B1 55%, #E9EDE3); }
.visual--midnight { background: linear-gradient(140deg, #241C22, #4A3227 60%, #8A5A3A); }
.visual--citrus { background: linear-gradient(140deg, #C97B2D, #E8A94F 55%, #F7DFA8); }
.visual--reserve { background: linear-gradient(140deg, #33241B, #5C3B24 55%, #A8744A); }

.scent-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; flex: 1; }
.scent-body h3 { margin-bottom: .4rem; }
.scent-notes {
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 1rem;
}
.scent-desc { color: var(--soft-gray); font-size: .95rem; flex: 1; margin-bottom: 1.4rem; }
.scent-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.price { font-family: var(--serif); font-size: 1.35rem; color: var(--charcoal); }
.price small { font-size: .8rem; color: var(--soft-gray); font-family: var(--sans); }

/* ---------- Product page ---------- */

.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4.5rem 0; }
.product-visual { border-radius: var(--radius); min-height: 460px; aspect-ratio: 1 / 1; position: relative; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lift); overflow: hidden; }
.product-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-visual .scent-mark { font-family: var(--serif); font-style: italic; font-size: 2rem; color: rgba(255,255,255,0.94); text-shadow: 0 2px 14px rgba(0,0,0,0.3); text-align: center; padding: 0 2rem; }
.product-info .eyebrow { margin-bottom: .6rem; }
.product-info h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: .6rem; }
.product-info .scent-notes { margin-bottom: 1.6rem; }
.product-info .price { font-size: 1.8rem; display: block; margin: 1.6rem 0; }
.product-desc p { margin-bottom: 1.1rem; color: var(--soft-gray); }
.buy-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }

.ritual-note {
  margin-top: 2.4rem; padding: 1.4rem 1.6rem;
  background: var(--blush); border-left: 3px solid var(--rose-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem; color: var(--soft-gray);
}
.ritual-note strong { color: var(--charcoal); font-weight: 500; }

/* ---------- Feature rows / About ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.4rem; text-align: center; }
.feature-item .feature-icon {
  width: 58px; height: 58px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold-light), var(--rose-gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--copper);
}
.feature-item h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature-item p { font-size: .92rem; color: var(--soft-gray); }
.section--dark .feature-item p { color: rgba(251,247,243,0.75); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col .col-visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }

/* ---------- Care / FAQ ---------- */

.care-steps { max-width: 760px; margin: 0 auto; counter-reset: step; }
.care-step {
  display: flex; gap: 1.6rem; padding: 1.8rem 0;
  border-bottom: 1px solid rgba(231, 183, 155, 0.4);
}
.care-step:last-child { border-bottom: 0; }
.step-num {
  font-family: var(--serif); font-size: 1.6rem; color: var(--rose-gold);
  min-width: 48px; line-height: 1.1;
}
.care-step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.care-step p { font-size: .95rem; color: var(--soft-gray); }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); margin-bottom: 1rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.3rem 1.6rem;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--rose-gold); transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--deep-pink); }
.faq-item .faq-answer { padding: 0 1.6rem 1.4rem; color: var(--soft-gray); font-size: .95rem; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-form { background: var(--white); padding: 2.6rem; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--copper); margin-bottom: .45rem; font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .85rem 1rem; border: 1px solid rgba(231,183,155,0.6);
  border-radius: var(--radius); font-family: var(--sans); font-size: .95rem;
  color: var(--charcoal); background: var(--ivory); transition: border-color .25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--deep-pink);
}

/* ---------- CTA band ---------- */

.cta-band {
  text-align: center; padding: 5rem 0;
  background:
    radial-gradient(ellipse 700px 400px at 50% 120%, rgba(233,30,99,0.18), transparent 65%),
    var(--charcoal);
  color: var(--ivory);
}
.cta-band h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-band p { color: rgba(251,247,243,0.75); max-width: 560px; margin: 0 auto 2.2rem; }

/* ---------- Footer ---------- */

.site-footer { background: var(--charcoal); color: rgba(251,247,243,0.8); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 96px; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; }
.site-footer h4 {
  color: var(--rose-gold); font-family: var(--sans); font-size: .74rem;
  letter-spacing: .24em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a { color: rgba(251,247,243,0.75); font-size: .9rem; }
.site-footer ul a:hover { color: var(--rose-gold); }
.footer-bottom {
  border-top: 1px solid rgba(231,183,155,0.2); padding-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .8rem; color: rgba(251,247,243,0.5);
}

/* ---------- Page banner ---------- */

.page-banner {
  text-align: center; padding: 4.5rem 0 4rem;
  background:
    radial-gradient(ellipse 800px 420px at 50% -20%, rgba(231,183,155,0.35), transparent 65%),
    var(--blush);
}
.page-banner h1 { margin-bottom: .6rem; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.badge {
  display: inline-block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  background: var(--rose-gold-light); color: var(--copper);
  padding: .3rem .9rem; border-radius: 999px; font-weight: 500;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: 70px;
    flex-direction: column; gap: 0; background: var(--ivory);
    border-bottom: 1px solid var(--rose-gold-light);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 1rem; border-bottom: 0; }
  .nav-toggle { display: block; }
  .product-hero, .two-col, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .product-visual { min-height: 320px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 4.5rem; }
  .hero-logo { height: 190px; }
}
