/* === VASTRAM MERCHANDISE SECTION === */
.vastram-section {
  background: var(--bg-secondary);
}

.vastram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}

.vastram-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.vastram-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.vastram-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
}

.vastram-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vastram-card-placeholder {
  font-size: 48px;
  opacity: 0.3;
}

.vastram-card-body {
  padding: 20px 24px;
}

.vastram-card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(122, 139, 111, 0.1);
  color: var(--sage);
  margin-bottom: 8px;
}

.vastram-card-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.vastram-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.vastram-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--terracotta);
}
