/* =========================================================
   Juniper Crest Land — Premium Tennis Boutique
   Shared stylesheet
   ========================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --pink: #d6336c;
  --pink-dark: #a3234f;
  --pink-light: #fbe4ec;
  --green: #1f4d3d;
  --green-light: #e7f2ec;
  --gold: #c9a15a;
  --cream: #fffaf7;
  --ink: #23201f;
  --ink-soft: #5b5551;
  --border: #ecdfd9;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(35, 32, 31, 0.08);
  --shadow-lg: 0 20px 50px rgba(35, 32, 31, 0.14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: .6em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #163a2e; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green);
  color: #eaf3ee;
  font-size: .8rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { opacity: .9; }
.topbar span { opacity: .85; }
.topbar .topbar-links { display: flex; gap: 18px; }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 247, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .01em;
  color: var(--ink);
  white-space: nowrap;
}
.logo .mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 800;
}
.logo small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .18em; color: var(--ink-soft); text-transform: uppercase; }

nav.main-nav { display: flex; gap: 28px; }
nav.main-nav a {
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--pink); }
nav.main-nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--pink); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pink-light);
  color: var(--pink-dark);
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
}
.icon-btn:hover { background: var(--pink); color: #fff; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--pink-dark);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.menu-toggle {
  display: none;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink);
}

@media (max-width: 900px) {
  nav.main-nav {
    position: fixed; top: 0; right: -280px; height: 100vh; width: 260px;
    background: #fff; flex-direction: column; padding: 90px 28px; gap: 22px;
    box-shadow: var(--shadow-lg); transition: right .25s ease; z-index: 200;
  }
  nav.main-nav.open { right: 0; }
  .menu-toggle { display: block; }
}

.nav-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 150;
}
.nav-overlay.open { display: block; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: .82rem;
  color: var(--ink-soft);
  padding: 18px 0;
}
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 60px 0;
}
.hero-copy h1 { font-size: 2.7rem; margin-bottom: .35em; }
.hero-copy p.lead { font-size: 1.1rem; max-width: 480px; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 700;
}
.hero-badge .star { color: var(--gold); }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  padding: 90px 0;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,77,61,.55), rgba(35,32,31,.72));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.5rem; margin-bottom: .3em; }
.page-hero p { color: #f2ece7; max-width: 560px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head.left { text-align: left; margin: 0 0 40px; }
.bg-soft { background: var(--green-light); }
.bg-pink { background: var(--pink-light); }
.bg-dark { background: var(--green); color: #fff; }
.bg-dark p { color: #d7e6df; }
.bg-dark h2, .bg-dark h3 { color: #fff; }

/* ---------- Category tiles ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(20,18,17,.82) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.cat-card .overlay span.tag {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--pink-light);
  margin-bottom: 6px; font-weight: 700;
}
.cat-card .overlay h3 { margin-bottom: 4px; font-size: 1.3rem; }
.cat-card .overlay p { color: #ece5e1; font-size: .85rem; margin-bottom: 0; }

/* ---------- Product grid & cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-thumb { position: relative; aspect-ratio: 3/4; overflow: hidden; background: #eee; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--pink); color: #fff;
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: 5px 10px; border-radius: 999px;
}
.product-badge.gold { background: var(--gold); }
.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.product-info { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info .cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pink); font-weight: 700; }
.product-info h3 { font-size: 1.02rem; margin-bottom: 2px; }
.stars { color: var(--gold); font-size: .82rem; }
.stars span.count { color: var(--ink-soft); font-weight: 400; margin-left: 4px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 6px 0 12px; }
.price { font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.price-old { text-decoration: line-through; color: #b6aca5; font-size: .88rem; }
.add-cart-btn {
  margin-top: auto;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: background .15s ease;
}
.add-cart-btn:hover { background: var(--pink); }
.add-cart-btn.added { background: var(--green); }

/* ---------- Filters bar ---------- */
.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
}
.filter-pill.active, .filter-pill:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.sort-select {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: .84rem;
  font-weight: 600;
}
.result-count { font-size: .85rem; color: var(--ink-soft); }

/* ---------- Feature strip ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item { text-align: center; padding: 10px; }
.feature-item .ic {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--pink-light); color: var(--pink-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 14px;
}
.feature-item h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-item p { font-size: .87rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.testi-card .stars { margin-bottom: 12px; }
.testi-user { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-user strong { display: block; font-size: .92rem; }
.testi-user span { font-size: .78rem; color: var(--ink-soft); }

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg); object-fit: cover; height: 480px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.stats-row { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat b { display: block; font-size: 2rem; color: var(--pink); }
.stat span { font-size: .82rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .06em; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.value-card .ic { font-size: 1.6rem; margin-bottom: 12px; }

.team-photo-wrap { position: relative; }
.team-photo-wrap img { border-radius: 22px; box-shadow: var(--shadow-lg); width: 100%; height: 520px; object-fit: cover; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 260px; object-fit: cover; }
.blog-card .blog-body { padding: 24px; }
.blog-card .meta { font-size: .78rem; color: var(--pink); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.15rem; }
.blog-card .read-more { font-weight: 700; font-size: .88rem; color: var(--ink); display: inline-flex; gap: 6px; margin-top: 8px; }

.article-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lg); margin: 30px 0 10px; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin-top: 1.4em; }
.article-body blockquote {
  border-left: 4px solid var(--pink); margin: 24px 0; padding: 6px 24px; font-style: italic; color: var(--ink-soft); font-size: 1.1rem;
}
.article-meta { display: flex; gap: 18px; align-items: center; color: var(--ink-soft); font-size: .85rem; margin: 14px 0 30px; flex-wrap: wrap; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.tag-list span { background: var(--pink-light); color: var(--pink-dark); padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; font-size: 1.02rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; color: var(--ink);
}
.faq-q .plus { font-size: 1.4rem; color: var(--pink); transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 20px; }
.faq-cats { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); margin-bottom: 20px; }
.contact-info-card h4 { margin-bottom: 6px; }
.contact-info-card .ic { font-size: 1.3rem; margin-bottom: 10px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border);
  font-family: var(--font); font-size: .92rem; background: #fff; color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: 2px solid var(--pink); border-color: var(--pink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 4px; }
.form-success {
  display: none; background: var(--green-light); border: 1px solid #bcdccb; color: var(--green);
  padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-weight: 600; font-size: .9rem;
}
.form-success.show { display: block; }
.map-embed {
  border-radius: var(--radius); overflow: hidden; height: 260px; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--green-light), var(--pink-light));
  display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-weight: 600; text-align:center; padding: 20px;
}

/* ---------- Product detail page ---------- */
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.pd-gallery-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pd-thumbs img {
  width: 74px; height: 74px; object-fit: cover; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; opacity: .75;
}
.pd-thumbs img.active { border-color: var(--pink); opacity: 1; }
.pd-info .cat { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--pink); font-weight: 700; }
.pd-info h1 { font-size: 2rem; margin: 8px 0 10px; }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: .88rem; color: var(--ink-soft); }
.pd-price { font-size: 1.8rem; font-weight: 800; margin: 14px 0; }
.pd-price .price-old { font-size: 1.1rem; margin-left: 10px; }
.pd-desc { margin-bottom: 22px; }
.option-group { margin-bottom: 20px; }
.option-group label.title { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 10px; }
.swatches { display: flex; gap: 10px; }
.swatch {
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--border); cursor: pointer; font-size: .85rem; font-weight: 600; background: #fff;
}
.swatch.active, .swatch:hover { border-color: var(--pink); color: var(--pink); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-control button { width: 38px; height: 38px; border: none; background: #fff; font-size: 1.1rem; cursor: pointer; }
.qty-control input { width: 44px; text-align: center; border: none; font-weight: 700; }
.pd-actions { display: flex; gap: 14px; margin-bottom: 26px; }
.pd-meta-list { border-top: 1px solid var(--border); padding-top: 18px; font-size: .87rem; color: var(--ink-soft); }
.pd-meta-list div { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--border); }

.tabs { display: flex; gap: 30px; border-bottom: 1px solid var(--border); margin: 60px 0 30px; }
.tab-btn { background: none; border: none; padding: 12px 0; font-weight: 700; font-size: .95rem; color: var(--ink-soft); cursor: pointer; position: relative; }
.tab-btn.active { color: var(--pink); }
.tab-btn.active::after { content:""; position: absolute; left:0; right:0; bottom: -1px; height: 2px; background: var(--pink); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.review-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.review-item img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.review-item .stars { margin-bottom: 4px; }

/* ---------- Cart ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 20px 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 16px; }
.cart-item-info img { width: 82px; height: 82px; object-fit: cover; border-radius: 12px; }
.cart-item-info h4 { font-size: .95rem; margin-bottom: 4px; }
.cart-item-info span { font-size: .8rem; color: var(--ink-soft); }
.remove-btn { background: none; border: none; color: var(--pink); cursor: pointer; font-size: .82rem; font-weight: 700; }
.cart-empty { text-align: center; padding: 70px 0; }
.cart-empty .ic { font-size: 3rem; margin-bottom: 16px; }
.summary-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: .92rem; color: var(--ink-soft); }
.summary-row.total { font-weight: 800; font-size: 1.15rem; color: var(--ink); border-top: 1px solid var(--border); margin-top: 10px; padding-top: 16px; }
.promo-row { display: flex; gap: 10px; margin: 16px 0; }
.promo-row input { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border); }

/* ---------- Account ---------- */
.auth-wrap { max-width: 440px; margin: 0 auto; background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.auth-tabs { display: flex; background: var(--pink-light); border-radius: 999px; padding: 4px; margin-bottom: 30px; }
.auth-tab { flex: 1; text-align: center; padding: 10px; border-radius: 999px; cursor: pointer; font-weight: 700; font-size: .88rem; }
.auth-tab.active { background: var(--pink); color: #fff; }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--ink-soft); margin-bottom: 20px;}
.divider-text { text-align: center; color: var(--ink-soft); font-size: .8rem; margin: 20px 0; position: relative; }
.account-dashboard { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.account-sidebar { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 10px; height: fit-content; }
.account-sidebar a { display: block; padding: 13px 18px; border-radius: 10px; font-weight: 600; font-size: .9rem; color: var(--ink-soft); }
.account-sidebar a.active, .account-sidebar a:hover { background: var(--pink-light); color: var(--pink-dark); }
.order-row { display: flex; justify-content: space-between; align-items: center; padding: 18px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: 14px; }
.order-status { font-size: .75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--green-light); color: var(--green); }

/* ---------- Newsletter CTA ---------- */
.newsletter-banner {
  position: relative; border-radius: 28px; overflow: hidden; padding: 70px 40px; text-align: center; color: #fff;
  background-size: cover; background-position: center;
}
.newsletter-banner::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(31,77,61,.5), rgba(20,18,17,.85)); }
.newsletter-banner .container { position: relative; z-index: 2; max-width: 560px; }
.newsletter-form { display: flex; gap: 10px; margin-top: 24px; max-width: 440px; margin-left: auto; margin-right: auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border-radius: 999px; border: none; font-size: .92rem; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--ink); color: #cfc9c5; padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid #3a3532; }
.footer-grid h5 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; font-size: .88rem; }
.footer-grid a:hover { color: var(--pink-light); }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { color: #a8a29d; font-size: .88rem; max-width: 300px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; background: #3a3532; display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.social-row a:hover { background: var(--pink); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; font-size: .8rem; color: #8f8983; flex-wrap: wrap; gap: 10px; }
.footer-bottom a:hover { color: #fff; }
.payment-icons { display: flex; gap: 8px; font-size: .78rem; }
.payment-icons span { background: #3a3532; padding: 4px 10px; border-radius: 6px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media img { height: 340px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split img { height: 320px; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pd-grid { grid-template-columns: 1fr; }
  .account-dashboard { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { padding: 14px 0; }
}
