/* Verdanly shop — shares the main site's palette/type (Playfair Display + Work Sans). */

:root {
  --cream: #FAF7F2;
  --cream-deep: #F4EDE7;
  --cream-alt: #EFE8E0;
  --linen: #E6DFD6;
  --ink: #292A22;
  --ink-soft: #4A4E42;
  --sage: #8FA37E;
  --sage-dark: #64775A;
  --sage-tint: #CAD2C2;
  --hero-heading: #253B35;
  --terracotta: #C77B4D;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Work Sans", Arial, sans-serif;

  --content-width: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream-deep);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

.site-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* header */
.shop-header {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--linen);
}
.shop-header .site-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.shop-logo { display: flex; align-items: center; }
.shop-logo img { height: 40px; width: auto; }
.shop-nav { display: flex; align-items: center; gap: 26px; }
.shop-nav a { font-size: 0.9rem; color: var(--ink-soft); }
.shop-nav a:hover { color: var(--ink); }
.cart-btn { background: none; border: none; cursor: pointer; color: var(--ink); font-size: 1.3rem; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 8px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; border: 1.5px solid transparent; cursor: pointer; transition: all .15s; }
.btn-fill { background: var(--sage); color: #fff; }
.btn-fill:hover { background: var(--sage-dark); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { opacity: .85; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }

/* hero */
.shop-hero { padding: 56px 0; }
.shop-hero .hero-card {
  background: var(--sage-tint);
  border-radius: 28px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.shop-eyebrow { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; margin-bottom: 12px; }
.shop-hero h1 { color: var(--hero-heading); }
.shop-hero p { color: var(--hero-heading); opacity: .85; font-size: 1.05rem; }
.shop-hero img { border-radius: 14px; }

@media (max-width: 860px) {
  .shop-hero .hero-card { grid-template-columns: 1fr; padding: 20px; }
}

section { padding: 56px 0; }
.section-alt { background: var(--cream-alt); }
.section-sage { background: var(--sage-tint); }
.section-sage h2 { color: var(--hero-heading); }
.text-center { text-align: center; }
.mw-680 { max-width: 680px; margin-left: auto; margin-right: auto; }

/* product grid (shop listing) */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--cream); border: 1px solid var(--linen); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.product-card img { aspect-ratio: 3/4; object-fit: cover; }
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.product-card-price { font-size: 1.15rem; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.product-card-desc { font-size: .9rem; flex: 1; margin-bottom: 16px; }
.product-card-actions { display: flex; gap: 10px; }
.product-card-actions .btn { flex: 1; justify-content: center; padding: 11px 16px; font-size: .85rem; }

@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; } }

/* product detail panel */
.product-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-panel img { border-radius: 14px; }
.product-price { font-size: 1.5rem; color: var(--ink); font-weight: 700; margin-bottom: 18px; }
.product-meta { font-size: .85rem; color: var(--sage-dark); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; font-weight: 600; }
.product-panel ul { padding-left: 1.3em; }
.product-panel li { margin-bottom: .4em; }

@media (max-width: 860px) {
  .product-panel { grid-template-columns: 1fr; }
}

/* trust badges */
.badges { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 8px 0; }
.badge { text-align: center; font-size: .85rem; color: var(--ink-soft); }
.badge-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }

/* faq */
.faq-item { border-bottom: 1px solid var(--linen); padding: 18px 0; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 6px; }

/* forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--linen); border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem; background: #fff; color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--sage-dark); }

/* cart drawer */
#cart-drawer {
  position: fixed; top: 0; right: -420px; width: 380px; max-width: 92vw; height: 100vh;
  background: #fff; box-shadow: -8px 0 30px rgba(0,0,0,.15); z-index: 200; transition: right .25s ease;
  display: flex; flex-direction: column; padding: 28px 24px;
}
#cart-drawer.open { right: 0; }
#cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.3); z-index: 190; display: none;
}
#cart-overlay.open { display: block; }
.cart-close { align-self: flex-end; background: none; border: none; font-size: 1.4rem; cursor: pointer; }
.cart-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--linen); }
.cart-item-remove { background: none; border: none; color: var(--terracotta); cursor: pointer; font-size: .8rem; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; padding: 18px 0; font-size: 1.1rem; }
.cart-empty { color: var(--ink-soft); font-size: .9rem; padding: 20px 0; }

/* footer */
.shop-footer { background: var(--cream-deep); border-top: 1px solid var(--linen); padding: 44px 0 28px; }
.shop-footer .site-container { text-align: center; }
.footer-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }
.footer-links { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: .85rem; margin-bottom: 16px; }
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--sage-dark); }
.footer-support { font-size: .85rem; color: var(--ink-soft); margin-bottom: 6px; }
.footer-copy { font-size: .8rem; color: var(--sage-dark); margin-top: 14px; }
