/* ---------- MERCH CARDS ---------- */
.merch-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.merch-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(122, 92, 123, 0.05) 0%, rgba(216, 193, 94, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.merch-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.merch-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.merch-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--purple-dark);
}

.merch-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.merch-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: 0 15px 35px rgba(122, 92, 123, 0.15);
}

/* ---------- TESTIMONIAL CARDS ---------- */
.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  padding: 2.5rem 2rem;
  box-shadow: var(--glass-shadow);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 1;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  z-index: -1;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(122, 92, 123, .15);
  transform: translateY(-4px);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(216, 193, 94, 0.2);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__header h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.testimonial-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--purple-dark);
  font-weight: 600;
  background: rgba(122, 92, 123, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.testimonial-card__text {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* ---------- SWIPER NAV BUTTONS ---------- */
.swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.swiper-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}

.swiper-btn:hover {
  background: var(--gold-light);
  color: var(--purple-dark);
  border-color: var(--gold);
  transform: scale(1.05);
}

/* ---------- MINI COLLAGE HOME ---------- */
.home-collage { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.home-collage__item { aspect-ratio: 4/5; background: linear-gradient(135deg, rgba(122, 92, 123, 0.08) 0%, rgba(216, 193, 94, 0.12) 100%); border-radius: var(--radius); border: 1px solid var(--glass-border); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; transition: all 0.4s var(--ease); text-align: center; padding: 2rem; }
.home-collage__item:hover { transform: translateY(-4px); border-color: var(--gold-light); box-shadow: var(--glass-shadow); }
.home-collage__icon { margin-bottom: 1rem; color: var(--gold-dark); opacity: 0.8; }
.home-collage__title { font-family: var(--font-display); font-size: 1.4rem; color: var(--purple-dark); margin-bottom: 0.5rem; }
.home-collage__tag { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

/* Reducir espaciado en la Home */
body:has(#hero) .section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; }
