/* Melisa Crandlemire — moody olive editorial sample site */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Classic Gray walls + Agreeable Gray cabinets + olive studio mood */
  --bg: #e4e0d8;
  --bg-warm: #ebe7df;
  --bg-elevated: #f2efe8;
  --bg-dark: #3a4034;
  --bg-dark-soft: #4a5244;
  --ink: #2a2824;
  --ink-muted: #6d6860;
  --ink-on-dark: #e8e4dc;
  --ink-muted-on-dark: #b8b4aa;
  --accent: #5c6b52;
  --accent-deep: #424a38;
  --olive: #6b7358;
  --line: #c8c2b6;
  --line-dark: #525848;
  --frame-wood: linear-gradient(155deg, #c9b89a 0%, #9a8468 48%, #7a6a52 100%);
  --glow: rgb(92 107 82 / 0.14);
  --max: 1320px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.spaced-caps {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

.spaced-caps--light { color: var(--ink-muted-on-dark); }

/* ─── Nav ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgb(228 224 216 / 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgb(242 239 232 / 0.95);
}

.nav-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}

.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--accent-deep); }

.nav-shop {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent-deep);
  color: var(--accent-deep) !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-shop:hover {
  background: var(--accent-deep);
  color: var(--bg-warm) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}

/* ─── Hero — moody asymmetric ─── */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: var(--max);
  margin: 0 auto;
  background:
    radial-gradient(ellipse 80% 60% at 0% 40%, var(--glow), transparent 70%),
    var(--bg);
}

.hero-copy { max-width: 34rem; }

.hero-eyebrow { margin-bottom: 1.5rem; color: var(--olive); }

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--accent-deep);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent-deep);
  color: var(--bg-warm);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover { background: var(--olive); }
.hero-cta:active { transform: scale(0.98); }

.hero-visual {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 640px;
  justify-self: end;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(58 64 52 / 0.08) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 2px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(68vh, 580px);
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  border-radius: 2px;
  box-shadow: 0 28px 72px rgb(42 40 36 / 0.18);
}

/* ─── Section shell ─── */
.section {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
}

.section--dark {
  max-width: none;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

.section--dark .section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section--dark .spaced-caps { color: var(--olive); }
.section--dark .section-head h2 { color: var(--ink-on-dark); }
.section--dark .section-head p { color: var(--ink-muted-on-dark); }

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 52rem;
}

.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0.75rem;
}

.section-head p {
  margin-top: 1rem;
  color: var(--ink-muted);
  max-width: 55ch;
  font-size: 1.02rem;
}

/* ─── Photo frame + oval seal watermark ─── */
.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bg-dark-soft);
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.art-watermark {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  pointer-events: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.45;
  text-align: center;
  color: rgba(248, 244, 236, 0.92);
  width: 76px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(210, 198, 175, 0.75);
  border-radius: 50%;
  background: rgba(42, 40, 36, 0.42);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(3px);
}

/* ─── In Situ (vertical stack) ─── */
.in-situ-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 920px;
  margin: 0 auto;
}

.in-situ-stack .photo-frame {
  width: 100%;
  box-shadow: 0 20px 56px rgb(42 40 36 / 0.14);
}

.in-situ-stack .photo-frame img {
  filter: saturate(0.92) contrast(1.02);
}

/* ─── Feature block — olive studio mood ─── */
.feature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--bg-dark);
  border: 1px solid var(--line-dark);
  overflow: hidden;
}

.feature-block .feature-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4rem);
  background: var(--bg-dark-soft);
}

.feature-block .feature-visual .viewport {
  position: relative;
  width: 100%;
  max-width: min(420px, 72vw);
  background: #ddd8ce;
  overflow: hidden;
}

.feature-block .feature-visual .viewport img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 56px rgb(0 0 0 / 0.35);
  filter: saturate(0.94);
}

.feature-block-copy {
  width: 100%;
  max-width: 520px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
}

.feature-block-copy .spaced-caps { color: var(--olive); }

.feature-block-copy h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 1rem 0;
  color: var(--ink-on-dark);
}

.feature-block-copy p {
  color: var(--ink-muted-on-dark);
  margin-bottom: 1.75rem;
  max-width: 40ch;
}

.text-link {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}

.text-link:hover { color: var(--olive); }

.text-link--light {
  color: var(--ink-on-dark);
  border-color: var(--ink-muted-on-dark);
}

.text-link--light:hover {
  color: var(--olive);
  border-color: var(--olive);
}

/* ─── Gallery stack (single column, large) ─── */
.gallery-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 7vw, 5rem);
  max-width: 920px;
  margin: 0 auto;
}

.art-card {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.art-card:hover {
  box-shadow: 0 20px 56px rgb(42 40 36 / 0.1);
}

.art-card--portrait .frame-wrap {
  max-width: min(100%, 520px);
  margin: 0 auto;
}

.art-card--landscape .frame-wrap {
  max-width: min(100%, 880px);
  margin: 0 auto;
}

.art-card .frame-wrap {
  padding: 6px;
  background: var(--frame-wood);
  width: 100%;
}

.art-card .mat {
  padding: 14px;
  background: #f0ece4;
}

.art-card .viewport {
  position: relative;
  width: 100%;
  background: #ddd8ce;
  overflow: hidden;
}

.art-card .viewport img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.art-card .meta {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.art-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  color: var(--accent-deep);
}

.art-card .detail {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.art-card .price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--olive);
}

/* ─── About ─── */
.about-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-split .about-photo-wrap {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.about-split .about-photo-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 20px 56px rgb(42 40 36 / 0.14);
  filter: saturate(0.94);
}

.about-split .body p {
  color: var(--ink-muted);
  margin-bottom: 1rem;
  max-width: 52ch;
}

.about-split .body .spaced-caps { color: var(--olive); }

.about-split .body p.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  color: var(--accent-deep);
  line-height: 1.5;
}

/* ─── Contact ─── */
.contact-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  color: var(--accent-deep);
}

.contact-panel .spaced-caps { color: var(--olive); }
.contact-panel p { color: var(--ink-muted); margin-bottom: 1.5rem; }

.contact-details {
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-details a {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}

.contact-details a:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--bg-warm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-form button {
  margin-top: 1.25rem;
  padding: 0.85rem 1.75rem;
  background: var(--accent-deep);
  color: var(--bg-warm);
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover { background: var(--olive); }

/* ─── Footer ─── */
.site-footer {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3rem;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-muted);
  background: var(--bg);
}

.site-footer a { border-bottom: 1px solid transparent; }
.site-footer a:hover { border-bottom-color: var(--ink-muted); }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .art-card, .hero-cta { transition: none; }
}

/* ─── Mobile ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .hero-visual {
    order: -1;
    max-width: 100%;
    justify-self: stretch;
  }

  .hero-visual img {
    max-height: none;
  }

  .about-split { grid-template-columns: 1fr; }

  .contact-panel { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-warm);
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn { display: block; }

  .art-card--portrait .frame-wrap,
  .art-card--landscape .frame-wrap {
    max-width: 100%;
  }

  .artwork-card--portrait .art-frame,
  .artwork-card--landscape .art-frame {
    max-width: 100%;
  }
}

/* ─── Gallery filters (editorial) ─── */
.collection-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 clamp(1.25rem, 4vw, 2rem) 2.5rem;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
}

.filter-btn {
  font-family: inherit;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-muted);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.filter-btn.active {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--bg-warm);
}

/* ─── Dynamic gallery (merged from production) ─── */
.artwork-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(3rem, 7vw, 5rem);
  max-width: 920px;
  margin: 0 auto;
}

.artwork-card {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.artwork-card:hover {
  box-shadow: 0 20px 56px rgb(42 40 36 / 0.1);
}

.artwork-card--portrait .art-frame {
  max-width: min(100%, 520px);
  margin: 0 auto;
}

.artwork-card--landscape .art-frame {
  max-width: min(100%, 880px);
  margin: 0 auto;
}

.artwork-card .card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.artwork-card .card-body {
  padding: 1.25rem 1.5rem 1rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.artwork-card .card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent-deep);
  margin-bottom: 0.35rem;
}

.artwork-card .card-artist {
  font-size: 0.8rem;
  color: var(--olive);
  margin-bottom: 0.5rem;
}

.artwork-card .card-details {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.artwork-card .card-price {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--olive);
}

.card-print-size {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

.art-frame {
  padding: 6px;
  background: var(--frame-wood);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 14px rgb(42 40 36 / 0.1);
  transition: box-shadow 0.3s;
}

.art-frame-mat {
  padding: 14px;
  background: #f0ece4;
}

.art-frame-viewport {
  position: relative;
  width: 100%;
  background: #ddd8ce;
  overflow: hidden;
}

.art-frame-viewport img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 2;
}

.art-frame-viewport .skeleton-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #eceae6 25%, #e0ddd8 50%, #eceae6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.art-frame-viewport img.loaded ~ .skeleton-overlay { display: none; }

.art-frame-viewport .sold-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(255,255,255,0.92);
  color: #a33;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.art-frame-viewport .print-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  background: rgba(255,255,255,0.92);
  color: var(--accent-deep);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-actions {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.add-to-cart-btn,
.add-print-btn {
  width: 100%;
  max-width: 320px;
  padding: 10px 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.add-to-cart-btn {
  background: var(--accent-deep);
  color: var(--bg-warm);
  border: none;
}

.add-to-cart-btn:hover:not(:disabled) { background: var(--olive); }

.add-to-cart-btn:disabled {
  background: #c8c2b6;
  cursor: not-allowed;
}

.add-print-btn {
  background: var(--bg-elevated);
  color: var(--accent-deep);
  border: 1px solid var(--accent-deep);
}

.add-print-btn:hover {
  background: var(--accent-deep);
  color: var(--bg-warm);
}

.inquire-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 10px 0;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--ink-muted);
  transition: border-color 0.2s, color 0.2s;
}

.inquire-btn:hover {
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}

.card-price--inquire {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink-muted);
}

.card-print-link {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.inquire-banner {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.inquire-banner a {
  color: var(--accent-deep);
  border-bottom: 1px solid var(--line);
}

.section--prints {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
}

/* Subpages */
.page-main {
  padding-top: var(--nav-h);
}

.page-hero {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 300;
  margin-top: 0.5rem;
}

.nav-links a.nav-active { color: var(--accent-deep); }

.about-split--page {
  margin-bottom: 3rem;
}

.about-photo-wrap--portrait img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center 15%;
}

.about-bio .lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink);
}

.artist-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.artist-details h3 {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.artist-details p {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Cart page (editorial) */
.cart-page-section { max-width: 960px; margin: 0 auto; }

.cart-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink-muted);
}

.cart-items { display: flex; flex-direction: column; gap: 2rem; }

.cart-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.cart-summary {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.cart-summary h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.summary-row.total {
  border-top: 1px solid var(--line);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 500;
}

.checkout-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 14px;
  background: var(--accent-deep);
  color: var(--bg-warm);
  border: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.checkout-btn:hover:not(:disabled) { background: var(--olive); }

.cart-inquire-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-align: center;
}

.cart-inquire-note a { color: var(--accent-deep); }

@media (max-width: 700px) {
  .cart-item { grid-template-columns: 1fr; }
}

/* Cart badge in nav */
.nav-cart {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--accent-deep);
  color: var(--bg-warm);
  font-size: 0.6rem;
  font-weight: 600;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s, transform 0.3s;
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent-deep);
  color: var(--bg-warm);
  padding: 12px 24px;
  font-size: 0.85rem;
  border-radius: 2px;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 200;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
