/* ===== Four Leaf Finds Co. — brand stylesheet ===== */
:root {
  --forest: #2f5233;      /* deep clover green (wordmark) */
  --forest-dark: #24401f;
  --sage: #7a9a6b;        /* soft leaf green */
  --sage-soft: #e7eee0;   /* pale sage wash */
  --gold: #b8925a;        /* warm gold accent */
  --gold-soft: #d8c19a;
  --cream: #faf8f2;       /* page background */
  --cream-deep: #f2ede1;
  --ink: #3a3a34;         /* body text */
  --ink-soft: #6d6d63;

  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --radius: 18px;
  --shadow: 0 18px 40px -22px rgba(47, 82, 51, 0.35);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--forest); font-weight: 500; line-height: 1.12; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 12px 24px -12px rgba(47, 82, 51, 0.6);
}
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn-ghost {
  border: 1.5px solid var(--sage);
  color: var(--forest);
}
.btn-ghost:hover { background: var(--sage-soft); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2.2rem;
  background: rgba(250, 248, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-deep);
}
.brand-logo { height: 58px; width: auto; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--forest-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--forest);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 2.2rem 3rem;
}
.hero-text h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1.3rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-note { font-size: 0.85rem; color: var(--sage); letter-spacing: 0.03em; }
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  width: min(100%, 400px);
  justify-self: center;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.is-active { opacity: 1; }

/* ===== Value strip ===== */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 1rem auto 0;
  padding: 2.5rem 2.2rem;
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.strip-item { text-align: center; padding: 0 1rem; }
.strip-icon { font-size: 1.7rem; display: block; margin-bottom: 0.6rem; }
.strip-item h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.strip-item p { font-size: 0.92rem; color: var(--ink-soft); }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 0.8rem; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Shop ===== */
.shop { max-width: var(--max); margin: 0 auto; padding: 5rem 2.2rem; }
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.6rem; margin: -1rem 0 2.5rem; }
.filter {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--cream-deep);
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.filter:hover { border-color: var(--sage); }
.filter.is-active { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.8rem;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  max-width: 268px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.variant {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.15rem;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -22px rgba(47, 82, 51, 0.45); }
.card-img { aspect-ratio: 4 / 5; overflow: hidden; background: #fff; }
.card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s ease; }
.card[data-cat="necklaces"] .main-img { object-position: center 90%; }
.card:hover .card-img img { transform: scale(1.03); }
/* Gift-set preview: combined shot by default, split to chosen pieces on select */
.set-preview .set-combined { width: 100%; height: 100%; object-fit: cover; }
.set-preview.is-split { aspect-ratio: 8 / 5; }   /* landscape once split, so each half matches a single item */
.set-panes { position: absolute; inset: 0; display: flex; background: #fff; }
.set-panes[hidden] { display: none; }
.set-panes img { width: 50%; height: 100%; object-fit: cover; }
.set-panes img + img { border-left: 1px solid var(--cream-deep); }
.card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.card-body p { font-size: 0.9rem; color: var(--ink-soft); }
.price { font-family: var(--font-head); color: var(--gold) !important; font-size: 1.05rem; margin: 0.7rem 0 0.9rem !important; }
.shape-note { font-size: 0.8rem; color: var(--sage) !important; letter-spacing: 0.02em; margin: 0.1rem 0 0.6rem !important; }
.checkout-note { font-size: 0.76rem; color: var(--ink-soft); }

/* Shape pills (selector) */
.shape-pills { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0.3rem 0 0.7rem; }
.pill {
  padding: 0.35rem 0.85rem;
  border: 1.5px solid var(--cream-deep);
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pill:hover { border-color: var(--sage); }
.pill.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(47, 82, 51, 0.28);
}
.pill.is-active::before { content: "✓ "; font-weight: 700; }
.photo-strip { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.7rem; }

/* Shape thumbnails */
.shape-thumbs { display: flex; gap: 0.5rem; margin: 0.2rem 0 0.7rem; flex-wrap: wrap; }
.thumb {
  position: relative;
  width: 46px; height: 46px;
  padding: 0;
  border: 2px solid var(--cream-deep);
  border-radius: 10px;
  background: var(--sage-soft);
  overflow: visible;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.thumb:hover { transform: translateY(-2px); border-color: var(--sage); }
.thumb.is-active {
  border-color: var(--forest);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 0 0 3px var(--sage-soft), 0 4px 12px rgba(47, 82, 51, 0.28);
}
.thumb[data-shape].is-active::after {
  content: "✓";
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  border: 2px solid var(--cream);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.selected-shape, .set-necklace, .set-keychain { color: var(--forest); font-weight: 500; }
.set-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold) !important;
  margin: 0.5rem 0 0.35rem !important;
}

/* Card badge (gift set) */
.card-img { position: relative; }
.card-badge {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.4);
}

.card-actions { margin-top: auto; display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.btn-buy {
  display: inline-block;
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 12px 24px -14px rgba(47, 82, 51, 0.6);
  transition: transform 0.18s ease, background 0.18s ease;
}
.btn-buy:hover { background: var(--forest-dark); transform: translateY(-2px); }
.card-link { color: var(--ink-soft) !important; font-weight: 400; font-size: 0.82rem; letter-spacing: 0.03em; }
.card-link:hover { color: var(--gold) !important; }
.shop-all { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; }

/* ===== Story ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2.2rem 5rem;
}
.story-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.story-text h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.3rem; }
.story-text p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 32rem; }
.signature { font-family: var(--font-head); font-style: italic; color: var(--sage) !important; font-size: 1.1rem; }

/* ===== Wholesale ===== */
.wholesale {
  background: linear-gradient(160deg, var(--forest), var(--forest-dark));
  color: var(--cream);
  padding: 5rem 2.2rem;
  text-align: center;
}
.wholesale-inner { max-width: 40rem; margin: 0 auto; }
.wholesale .eyebrow { color: var(--gold-soft); }
.wholesale h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1rem; }
.wholesale p { color: rgba(250, 248, 242, 0.82); margin-bottom: 2rem; }
.wholesale-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: left;
  margin: 0 auto 2.5rem;
}
.wstep {
  background: rgba(250, 248, 242, 0.07);
  border: 1px solid rgba(250, 248, 242, 0.16);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}
.wnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.wstep p { color: rgba(250, 248, 242, 0.9); margin: 0; font-size: 0.92rem; }
.wstep strong { color: var(--cream); font-weight: 500; }
@media (max-width: 720px) { .wholesale-steps { grid-template-columns: 1fr; } }
.wholesale-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.wholesale .btn-primary { background: var(--gold); color: var(--forest-dark); }
.wholesale .btn-primary:hover { background: var(--gold-soft); }
.wholesale .btn-ghost { border-color: rgba(250,248,242,0.5); color: var(--cream); }
.wholesale .btn-ghost:hover { background: rgba(250,248,242,0.12); }

/* ===== Footer ===== */
.site-footer {
  background: var(--cream-deep);
  padding: 3.5rem 2.2rem 2rem;
  text-align: center;
}
.footer-logo { height: 70px; margin: 0 auto 1rem; }
.footer-brand p { color: var(--ink-soft); max-width: 26rem; margin: 0 auto 1.8rem; font-size: 0.95rem; }
.footer-links { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.8rem; }
.footer-links a { font-size: 0.9rem; color: var(--forest); letter-spacing: 0.03em; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  transition: color 0.15s ease;
}
.footer-social a:hover { color: var(--gold); }
.soc-ic { width: 18px; height: 18px; flex-shrink: 0; }
.copyright { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.02em; }

/* ===== Sub-pages (About / FAQ / Reviews) ===== */
.page-head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
  padding: 4rem 2.2rem 1.5rem;
}
.page-head h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 0.8rem; }
.page-wrap { max-width: var(--max); margin: 0 auto; padding: 2rem 2.2rem 4rem; }

/* FAQ */
.faq-list { max-width: 46rem; }
.faq-item { border-bottom: 1px solid var(--cream-deep); padding: 1.5rem 0; }
.faq-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.faq-item p { color: var(--ink-soft); }
.faq-item a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--gold-soft); }
.faq-item a:hover { color: var(--gold); }

/* Mini CTA band */
.mini-cta { text-align: center; background: var(--sage-soft); padding: 3.5rem 2.2rem; }
.mini-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }
.mini-cta p { color: var(--ink-soft); margin-bottom: 1.5rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: start; }
.about-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--sage-soft);
  color: var(--sage);
  font-family: var(--font-head);
  font-size: 1.1rem;
  padding: 2rem;
}
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 34rem; }
.about-text .signature { font-family: var(--font-head); font-style: italic; color: var(--sage); margin-bottom: 1.6rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.review-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
}
.review-stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.7rem; }
.review-text { color: var(--ink); font-size: 0.98rem; margin-bottom: 1rem; }
.review-name { color: var(--sage); font-size: 0.85rem; font-weight: 500; }
.review-meta { color: var(--ink-soft); font-weight: 400; }
.reviews-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 1rem 0; }

/* Reviews credibility stats */
.review-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 1rem;
}
.rs { display: flex; flex-direction: column; align-items: center; }
.rs-num { font-family: var(--font-head); color: var(--forest); font-size: 1.7rem; line-height: 1; }
.rs-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-top: 0.35rem; }

/* Review form */
.review-form { max-width: 30rem; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 1rem; }
.review-form label { display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.85rem; color: var(--forest); font-weight: 500; }
.review-form input, .review-form select, .review-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--cream-deep);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-weight: 300;
}
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { outline: none; border-color: var(--sage); }
.review-form .btn { align-self: flex-start; cursor: pointer; border: none; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); font-weight: 300 !important; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; }
  .hero-image { order: -1; width: min(100%, 340px); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; gap: 2rem; }
  .story-image { order: -1; }
}
@media (max-width: 620px) {
  .site-header { padding: 0.5rem 1.1rem; flex-wrap: wrap; }
  .brand-logo { height: 46px; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0 0.2rem;
    border-top: 1px solid var(--cream-deep);
    margin-top: 0.5rem;
  }
  .site-header.nav-open .nav { display: flex; }
  .nav a {
    padding: 0.75rem 0.3rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-deep);
  }
  .nav a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; }
  .hero, .shop, .story { padding-left: 1.2rem; padding-right: 1.2rem; }
  .strip { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 1rem; flex-direction: column; }
}

/* ===== Cart ===== */
.cart-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(47, 82, 51, 0.7);
  transition: transform 0.18s ease, background 0.18s ease;
}
.cart-fab:hover { background: var(--forest-dark); transform: translateY(-2px); }
.cart-count {
  background: var(--gold);
  color: var(--forest-dark);
  border-radius: 999px;
  min-width: 1.4rem;
  height: 1.4rem;
  padding: 0 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 500;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(47, 82, 51, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 96;
  width: min(92vw, 400px);
  height: 100%;
  background: var(--cream);
  box-shadow: -18px 0 40px -20px rgba(47, 82, 51, 0.5);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--cream-deep);
}
.cart-head h2 { font-size: 1.4rem; }
.cart-close { background: none; border: none; font-size: 1.6rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 0.5rem 1.4rem; }
.cart-empty { color: var(--ink-soft); text-align: center; padding: 2.5rem 1rem; }
.cart-row { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--cream-deep); }
.cart-row-main { flex: 1; }
.cart-row-name { font-family: var(--font-head); color: var(--forest); font-size: 1.02rem; }
.cart-row-shape { font-size: 0.8rem; color: var(--sage); margin-top: 0.1rem; }
.cart-qty { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 0.5rem; }
.cart-qty button {
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  border: 1.5px solid var(--sage); background: #fff; color: var(--forest);
  font-size: 1rem; line-height: 1; cursor: pointer;
}
.cart-qty span { min-width: 1.2rem; text-align: center; font-size: 0.92rem; }
.cart-row-right { text-align: right; }
.cart-row-price { font-family: var(--font-head); color: var(--gold); }
.cart-remove { display: block; margin-top: 0.5rem; background: none; border: none; color: var(--ink-soft); font-size: 0.78rem; text-decoration: underline; cursor: pointer; }
.cart-foot { padding: 1.2rem 1.4rem 1.6rem; border-top: 1px solid var(--cream-deep); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.cart-subtotal .lbl { color: var(--ink-soft); }
.cart-subtotal .val { font-family: var(--font-head); font-size: 1.35rem; color: var(--forest); }
.cart-note { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.cart-checkout { width: 100%; text-align: center; }
.cart-checkout[disabled] { opacity: 0.5; cursor: not-allowed; }
.add-toast {
  position: fixed; left: 50%; bottom: 5.5rem; transform: translateX(-50%) translateY(10px);
  background: var(--forest); color: var(--cream); padding: 0.7rem 1.3rem; border-radius: 999px;
  font-size: 0.88rem; z-index: 97; opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.add-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== About page rolling photo line ===== */
.photo-marquee { overflow: hidden; width: 100%; margin: 0 0 3rem; background: var(--cream); padding: 0.7rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 45s linear infinite; will-change: transform; backface-visibility: hidden; }
.marquee-track img {
  flex: none;
  height: 240px; width: 185px;
  object-fit: cover; object-position: center;
  border-radius: 12px;
  margin-right: 0.7rem;
  display: block;
}
.photo-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
@media (max-width: 620px) {
  .photo-marquee { padding: 0.5rem 0; margin-bottom: 2.4rem; }
  .marquee-track { animation-duration: 34s; }
  .marquee-track img { height: 190px; width: 145px; margin-right: 0.5rem; border-radius: 10px; }
}
