/* Shop the Trend Page — v2 */

/* Hero */
.shop-hero {
  padding: 130px 0 20px;
  background: var(--color-bg);
}

.shop-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.shop-hero-text {
  flex: 1;
}

.shop-hero-text h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.1;
}

.shop-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 420px;
}

.shop-hero-art {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
}

.shop-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Main */
.shop-main {
  padding-bottom: 0;
}

/* Trend Sections */
.trend-section {
  padding: 48px 0;
}

.trend-alt {
  background: #faf8f5;
}

.trend-supplies {
  background: #f5f3f0;
}

.trend-header {
  margin-bottom: 36px;
}

.trend-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.trend-header h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.trend-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 10px;
}

.trend-link {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.trend-link:hover {
  opacity: 0.7;
}

/* Product Cards — Fashion Trends */
.trend-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}

.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

/* Featured product spans full width */
.product-featured {
  grid-column: 1 / -1;
  padding: 24px 28px;
}

.product-featured .product-thumb {
  width: 140px;
  height: 140px;
}

.product-featured .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-thumb {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--color-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.product-info p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.product-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold);
  white-space: nowrap;
  border: 1px solid var(--color-gold);
  padding: 5px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.product-card:hover .product-cta {
  background: var(--color-gold);
  color: #fff;
}

.product-card:hover .product-thumb img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.product-thumb img {
  transition: transform 0.3s ease;
}

/* Supply Cards — Compact Grid */
.supplies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.supply-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 24px 16px 20px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.2s;
}

.supply-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.supply-card:hover .supply-thumb img {
  transform: scale(1.08);
}

.supply-thumb img {
  transition: transform 0.3s ease;
}

.supply-thumb {
  width: 120px;
  height: 120px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.supply-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.supply-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.supply-card .product-price {
  font-size: 0.85rem;
  color: var(--color-gold);
}

/* Disclosure */
.shop-disclosure {
  padding: 32px 0 48px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}

/* Active nav */
.nav-links a.active {
  color: var(--color-gold);
}

/* Responsive */
@media (max-width: 768px) {
  .shop-hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .shop-hero-text h1 {
    font-size: 2.2rem;
  }

  .shop-subtitle {
    max-width: 100%;
  }

  .shop-hero-art {
    width: 100%;
    max-width: 340px;
    height: 180px;
  }

  .trend-products {
    grid-template-columns: 1fr;
  }

  .product-featured {
    grid-column: auto;
  }

  .supplies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .shop-hero {
    padding: 120px 0 32px;
  }

  .shop-hero-text h1 {
    font-size: 1.8rem;
  }

  .trend-section {
    padding: 36px 0;
  }

  .trend-header h2 {
    font-size: 1.5rem;
  }

  .supplies-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .supply-card {
    padding: 16px 12px;
  }

  .product-card {
    gap: 14px;
    padding: 14px 16px;
  }

  .product-thumb {
    width: 72px;
    height: 72px;
  }
}
