/* Pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold-muted);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
  backdrop-filter: blur(8px);
}

.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: goldPulse 2s ease-in-out infinite;
}

/* Hero CTA button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.btn-hero:hover {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: 0 0 40px rgba(212, 160, 23, 0.3);
}

/* Glass card */
.glass-card {
  background: rgba(15, 16, 25, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 160, 23, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s var(--ease-out);
}

.glass-card:hover {
  border-color: rgba(212, 160, 23, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(212, 160, 23, 0.08);
}

.glass-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.1);
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.glass-card .card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.glass-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.glass-card.has-image {
  padding: 0;
  overflow: hidden;
}

.glass-card.has-image .card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.glass-card.has-image .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.glass-card.has-image:hover .card-image img {
  transform: scale(1.05);
}

.glass-card.has-image .card-body {
  padding: 1.75rem 2rem 2rem;
}

/* Experience badge */
.exp-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* Small booking button */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold-muted);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-book:hover {
  background: rgba(212, 160, 23, 0.1);
  border-color: var(--gold);
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 237, 230, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 160, 23, 0.12);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--bg-elevated);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 1.5rem;
}

.product-brand {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.25rem 0;
  color: var(--text-primary);
}

.product-detail {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Cart button */
.btn-cart {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gold-muted);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-cart:hover {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.btn-cart.added {
  background: rgba(212, 160, 23, 0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ===== BUNDLE CARD ===== */
.bundle-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 160, 23, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.bundle-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(212, 160, 23, 0.1);
}

.bundle-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  margin-bottom: 0.75rem;
}

.bundle-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.bundle-products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.bundle-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bundle-product img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(240, 237, 230, 0.08);
}

.bundle-product-name {
  font-size: 0.75rem;
  color: var(--text-secondary);
  max-width: 120px;
  text-align: center;
}

.bundle-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.bundle-pricing {
  margin-bottom: 1.5rem;
}

.bundle-price-original {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.bundle-price-bundle {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0.25rem 0;
}

.bundle-savings {
  font-size: 0.75rem;
  color: var(--perfume-light);
  font-weight: 500;
}

/* ===== VIP CARD ===== */
.vip-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 237, 230, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.vip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.vip-card.tier-bronze { border-top: 3px solid var(--bronze); }
.vip-card.tier-silver { border-top: 3px solid var(--silver); }
.vip-card.tier-gold {
  border-top: 3px solid var(--gold);
  border-color: rgba(212, 160, 23, 0.15);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.05);
}

.vip-tier-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.vip-card.tier-bronze .vip-tier-name { color: var(--bronze); }
.vip-card.tier-silver .vip-tier-name { color: var(--silver); }
.vip-card.tier-gold .vip-tier-name { color: var(--gold); }

.vip-requirement {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.vip-discount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.vip-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
}

.vip-benefits li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.vip-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-muted);
}

.vip-card.tier-gold .vip-benefits li::before {
  background: var(--gold);
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  border: none;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1eba59;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  color: #fff;
}

/* Contact card */
.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 237, 230, 0.05);
  border-radius: 16px;
  padding: 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
