/* ========================================
   LASH AND BEAUTY — Combos Page Styles
   ======================================== */

/* ---- Hero ---- */
.combos-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #0f3443 40%, #34a853 100%);
  overflow: hidden;
}
.combos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 75%, rgba(52,168,83,0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(255,215,0,0.1) 0%, transparent 50%);
}
.combos-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.3);
}
.combos-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 0 4rem;
}
.combos-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.combos-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.combos-hero__title em {
  color: #FFD700;
  font-style: italic;
}
.combos-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Filters Bar ---- */
.combos-filters {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 0;
  position: sticky;
  top: 70px;
  z-index: 30;
}
.filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.filters-bar__info {
  font-size: 0.88rem;
  color: #666;
  font-weight: 500;
}
.filters-select {
  padding: 0.55rem 2.5rem 0.55rem 1rem;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #333;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.filters-select:focus {
  outline: none;
  border-color: #34a853;
}

/* ---- Combo Grid ---- */
.combos-section {
  padding: 3rem 0 4rem;
  background: #F7FAF8;
  min-height: 500px;
}
.combos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

/* ---- Combo Card ---- */
.combo-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  flex-direction: row;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}

/* Image */
.combo-card__image {
  position: relative;
  width: 220px;
  min-height: 220px;
  flex-shrink: 0;
  background: linear-gradient(145deg, #f0ece6, #e8e0d6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.combo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.combo-card:hover .combo-card__image img {
  transform: scale(1.06);
}
.combo-card__placeholder {
  font-size: 3rem;
  color: #ccc;
}
.combo-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #34a853;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.combo-card__badge--hot {
  background: #EF4444;
}
.combo-card__discount {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: #FFD700;
  color: #000000;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
}

/* Body */
.combo-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.combo-card__tag {
  font-size: 0.68rem;
  color: #34a853;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.combo-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.combo-card__items {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.75rem;
}
.combo-card__items i {
  color: #34a853;
  margin-right: 0.3rem;
  font-size: 0.65rem;
}
.combo-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.75rem;
}
.combo-card__price-group {
  display: flex;
  flex-direction: column;
}
.combo-card__old-price {
  font-size: 0.78rem;
  color: #bbb;
  text-decoration: line-through;
  font-weight: 500;
}
.combo-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: #34a853;
}
.combo-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #34a853, #2e9648);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap;
}
.combo-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(52,168,83,0.35);
}

/* ---- Empty state ---- */
.combos-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #999;
}
.combos-empty i { font-size: 3rem; margin-bottom: 1rem; color: #ddd; }
.combos-empty h3 { font-size: 1.15rem; font-weight: 700; color: #666; margin-bottom: 0.5rem; }

/* ---- CTA Section ---- */
.combos-cta {
  padding: 4rem 0;
  background: #fff;
}
.cta-card {
  background: linear-gradient(135deg, #000000 0%, #0f3443 50%, #34a853 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(52,168,83,0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255,215,0,0.12) 0%, transparent 50%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFD700;
  margin: 0 auto 1.25rem;
  backdrop-filter: blur(8px);
}
.cta-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.cta-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .combos-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .combo-card { flex-direction: column; }
  .combo-card__image { width: 100%; min-height: 200px; aspect-ratio: 16 / 9; }
  .combos-hero__content { padding: 3.5rem 0 3rem; }
  .combos-hero__title { font-size: 1.8rem; }
  .cta-card { padding: 2.5rem 1.5rem; }
  .cta-card h2 { font-size: 1.4rem; }
}
