/* ═══════════════════════════════════════════════════════
   SHOP PAGE — Storefront Category Grid
   Extends design tokens from main.css
   ═══════════════════════════════════════════════════════ */

/* ── Shop Intro ── */
.shop-intro {
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.shop-intro p {
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--muted);
}

/* ── Shop Category Grid ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.shop-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--gold-rgb), 0.35);
  box-shadow: 0 8px 24px rgba(22, 35, 18, 0.08);
}

.shop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.shop-card:hover::before {
  opacity: 1;
}

.shop-card-vine {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.shop-card-vine::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--parchment2);
}

.shop-card-title {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--garden-deep);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.shop-card-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.2rem;
  flex: 1;
}

.shop-card-link {
  /* Use a local face: this label must not repaint when Google Fonts loads. */
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-variant: small-caps;
  color: var(--gold-on-light) !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.shop-card:hover .shop-card-link {
  color: var(--gold-light);
}

.shop-card-link-arrow {
  transition: transform 0.2s;
}

.shop-card:hover .shop-card-link-arrow {
  transform: translateX(4px);
}

/* ── Shop status note ── */
.shop-status {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(var(--gold-rgb), 0.06);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
}

.shop-status p {
  font-family: "Cormorant", serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .shop-card {
    padding: 1.5rem 1.2rem;
  }

  .shop-card-title {
    font-size: 1.1rem;
  }

  .shop-card-desc {
    font-size: 0.78rem;
    line-height: 1.65;
  }
}

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

  .shop-card {
    padding: 1.1rem 1rem;
    min-height: 210px;
  }

  .shop-card-title {
    font-size: 1.05rem;
  }

  .shop-card-desc {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .shop-card-link {
    font-size: 0.64rem;
  }
}
