/* ========================================
   MINIMAL PREMIUM PRICING 2025
   ======================================== */

:root {
  --spa-gold: #c5a274;
  --spa-dark: #2c2c2c;
  --spa-light: #f9f9f9;
  --spa-border: #e0e0e0;
}

.premium-price-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle leaf/branch background elements if desired, but keeping it minimal for now */

/* Minimal Warning Banner */
.pricing-warning-banner {
  background-color: var(--spa-light);
  border: 1px solid var(--spa-gold);
  color: var(--spa-dark);
  padding: 30px;
  margin-bottom: 60px;
  border-radius: 4px; /* Minimalist sharp/slight rounded corners */
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.warning-icon {
  font-size: 32px;
  color: var(--spa-gold);
  margin-bottom: 10px;
  display: block;
}

.warning-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--spa-gold);
}

.warning-content {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.warning-content p {
  margin-bottom: 8px;
}

.warning-content strong {
  color: var(--spa-dark);
}

/* Minimalist Pricing Cards */
.price-category-card {
  background: #ffffff;
  border: 1px solid var(--spa-border);
  padding: 40px 30px;
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.price-category-card:hover {
  border-color: var(--spa-gold);
}

/* Background Image version for cards */
.price-category-card.has-bg {
  background-size: cover;
  background-position: center;
  border: none;
}

.price-category-card.has-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92); /* Very light overlay for legibility */
  z-index: -1;
  transition: background 0.3s ease;
}

.price-category-card.has-bg:hover::before {
  background: rgba(255, 255, 255, 0.88);
}

.category-header {
  text-align: left;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--spa-border);
  padding-bottom: 15px;
}

.category-icon {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.category-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--spa-dark);
  margin: 0;
  letter-spacing: 1px;
}

.price-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dotted #eee;
}

.price-item:last-child {
  border-bottom: none;
}

.service-name {
  font-size: 15px;
  color: #555;
  font-weight: 400;
  flex: 1;
  padding-right: 15px;
}

.service-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--spa-dark);
  white-space: nowrap;
}

.service-price .price-from {
  font-size: 11px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  margin-right: 4px;
}

.subcategory-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--spa-gold);
  margin: 25px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section BG Image */
.premium-price-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/banner/banner.jpg');
  background-attachment: fixed;
  background-size: cover;
  opacity: 0.03; /* Extremely subtle */
  z-index: 0;
  pointer-events: none;
}

.premium-price-section .container {
  position: relative;
  z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .price-category-card {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .premium-price-section {
    padding: 60px 0;
  }
  
  .warning-title {
    font-size: 18px;
  }
  
  .category-title {
    font-size: 20px;
  }
  
  .service-name {
    font-size: 14px;
  }
}
