    /* ========================
       SiliTails Color Palette
       Replace the values below with the exact palette we finalized.
       Example only (safe defaults):
       --brand:        #1e9159;   // primary brand color (jungle green)
       --accent:       #f2b807;   // accent (banana gold)
       --ink:          #1b1b1f;   // primary text
       --bg:           #fffefb;   // page background
       --surface:      #ffffff;   // card background
       --muted:        #6b7280;   // secondary text
       --ring:         #1e915933; // focus ring
    ========================= */
    :root {
      --brand:  #1e9159;
      --accent: #f2b807;
      --ink:    #1b1b1f;
      --bg:     #fffae3;
      --surface:#ffffff;
      --muted:  #6b7280;
      --ring:   #1e915933;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(0,0,0,.07);
      --maxw:   1100px;
    }

    * { box-sizing: border-box; }
    html, body { height: 100%; }
    body {
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial, Noto Sans, "Apple Color Emoji", "Segoe UI Emoji";
      color: var(--ink);
      background: var(--bg);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { color: var(--brand); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .container { width: min(100%, var(--maxw)); margin: 0 auto; padding: 0 20px; }

    header {
      position: sticky;
      top: 0;
      background: rgba(255,250,227,.9);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #eee;
      z-index: 50;
    }
    .nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
    .brand { display:flex; align-items:center; gap:2px; }
    .brand img {  height: 87px; object-fit: contain; }
    .brand h1 { font-size: 1.1rem; margin: 0; letter-spacing: .2px; }

    .actions { display:flex; gap:10px; align-items:center; }
    .btn { display:inline-flex; align-items:center; justify-content:center; padding: 10px 14px; border-radius: 999px; border: 1px solid transparent; font-weight: 600; cursor: pointer; transition: transform .04s ease, box-shadow .2s ease; }
    .btn:active { transform: translateY(1px); }
    .btn.primary { background: var(--brand); color: white; box-shadow: var(--shadow); }
    .btn.ghost { border-color: #e5e7eb; color: var(--ink); background: white; }

    /* Hero banner */
    .hero { width: 100%; }
    .hero .banner {
      block-size: 300px; /* explicit height */
      inline-size: 100%;
      display: grid;
      place-items: center;
      background: #e8f5ee;
      position: relative;
      overflow: hidden;
    }
    .hero .banner img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; /* fill full width without distortion */
    }
    .hero .overlay {
      position: relative; z-index: 1; text-align: center; padding: 16px; color: #0f172a;
      text-shadow: 0 2px 10px rgba(255,255,255,.7);
    }
    .hero h2 { margin: 0; font-size: clamp(22px, 3vw, 36px); }
    .hero p  { margin: 6px 0 0; color: #1f2937; }

    /* Section blocks */
    section { padding: 28px 0; }
    .section-title { font-size: 1.5rem; margin: 0 0 10px; }
    .muted { color: var(--muted); }

    /* Products grid */
    .grid { display: grid; gap: 16px; grid-template-columns: repeat(12, 1fr); }
    .card { grid-column: span 12; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid #eee; }
    @media (min-width: 640px){ .card { grid-column: span 6; } }
    @media (min-width: 1024px){ .card { grid-column: span 4; } }

    .card-media { position: relative; aspect-ratio: 4/3; background: #f6f7f8; overflow: hidden; }
    .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display:block; }
    .card:hover .card-media img { transform: scale(1.03); }

    .badge { position: absolute; left: 12px; top: 12px; background: rgba(255,255,255,.9); color: #0f172a; padding: 6px 10px; border-radius: 999px; font-size: .8rem; border:1px solid #e5e7eb; }

    .card-body { padding: 14px; display: grid; gap: 8px; }
    .title { font-weight: 700; font-size: 1.05rem; }
    .price { font-weight: 700; color: var(--brand); }

    .pill { display:inline-flex; align-items:center; gap:8px; padding: 6px 10px; border-radius: 999px; background: #f8fafc; border:1px solid #e5e7eb; font-size: .85rem; }

    /* Lightbox */
    dialog#lightbox { border:none; padding:0; border-radius: 0; width:min(96vw, 1100px); }
    dialog::backdrop { background: rgba(0,0,0,.6); }
    .lightbox-inner { position: relative; background: #000; }
    .lightbox-inner img { display:block; width:100%; height:auto; }
    .lightbox-close { position:absolute; top:10px; right:10px; }

    /* Contact card */
    .contact { display:grid; gap: 16px; grid-template-columns: 1fr; }
    @media (min-width: 900px){ .contact { grid-template-columns: 1.5fr 1fr; align-items: start; }}

    .contact-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); border:1px solid #eee; padding: 18px; }
    .contact-card h3 { margin: 0 0 8px; font-size: 1.25rem; }
    .contact-row { display:flex; align-items:center; gap:10px; padding: 8px 0; border-bottom: 1px dashed #eee; }
    .contact-row:last-child { border-bottom: none; }

    /* Footer */
    footer { padding: 24px 0 40px; color: var(--muted); font-size: .95rem; }
    .footer-inner { display:flex; justify-content: space-between; gap:12px; flex-wrap: wrap; }

    /* Utility */
    .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; }
    .spacer { height: 8px; }
    .ring:focus-visible { outline: 4px solid var(--ring); outline-offset: 2px; }

/* Product details card matches your card/contact-card look */
.details-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  padding: 18px;
}

/* Accordion */
.st-acc {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  margin: 10px 0;
  padding: 10px 12px;
}

.st-acc > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  outline: none;
}

.st-acc > summary::-webkit-details-marker { display: none; }

/* Chevron */
.st-acc > summary::after {
  content: "▸";
  float: right;
  transform: translateY(1px);
  transition: transform .2s ease;
  opacity: .7;
}

.st-acc[open] > summary::after {
  transform: rotate(90deg) translateY(-1px);
}

/* Lists inside accordion */
.st-acc ul {
  margin: 8px 0 0 18px;
}

/* Keyboard focus ring matches your .ring utility */
.st-acc:focus-within {
  outline: 4px solid var(--ring);
  outline-offset: 2px;
}


/* Card shell that matches your site tokens */
.cardish {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #eee;
  padding: 18px;
}

/* About Artist layout */
#about-artist { margin: 32px 0; }

.about-artist {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
}

.about-artist .artist-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 2px);
}

.about-artist .section-title {
  margin: 0 0 8px;
}

.about-artist .checklist {
  margin: 10px 0 16px;
  padding: 0;
  list-style: none;
}
.about-artist .checklist li {
  position: relative;
  padding-left: 1.25rem;
  margin: 6px 0;
}
.about-artist .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  font-weight: 700;
  opacity: 0.85;
}

.about-artist .cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 720px) {
  .about-artist {
    grid-template-columns: 1fr;
  }
  .about-artist .artist-media {
    order: -1;
  }
}

/* Ensure a clear gap above details (prevents margin-collapsing) */
#product-details { padding-top: 28px; }

/* If your first element is an H2, remove extra top gap inside the card */
.details-card > :first-child { margin-top: 0; }

/* Center the artist card and keep it readable */
#about-artist .about-artist {
  margin: 0 auto;
}

