/* ==============================================
   SHOP PAGE STYLES
   ============================================== */

.shop-header {
  padding: clamp(var(--space-12), 7vw, var(--space-20)) var(--space-6) var(--space-10);
  border-bottom: 1px solid var(--color-divider);
  background: var(--color-surface-offset);
}

.shop-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.shop-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
  line-height: 1.6;
}

/* Editorial strip */
.shop-editorial-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  padding: var(--space-5) var(--space-6);
}
.editorial-strip-inner {
  max-width: var(--content-default);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.editorial-strip-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-1);
}
.editorial-strip-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 60ch;
}

/* Gift guide banner */
.gift-guide-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gift-guide-text {
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gift-guide-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  display: block;
}

.gift-guide-text h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.gift-guide-text p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 42ch;
  line-height: 1.6;
}

.gift-guide-image {
  overflow: hidden;
}
.gift-guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gift-guide-banner { grid-template-columns: 1fr; }
  .gift-guide-image { aspect-ratio: 16/7; }
  .gift-guide-text { padding: var(--space-8); }
}

/* Shop section header */
.shop-section-header {
  margin-bottom: var(--space-8);
}

/* Shop grid */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
}

/* Product action row */
.product-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.product-guide-link {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  text-decoration: none;
}
.product-guide-link:hover { color: var(--color-primary); }
