* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ede9e6;
}

:root {
  --primary: #0f5c4a; /* emerald */
  --primary2: #0b4b3d; /* darker emerald (hover) */

  --bg: #f7f5f1; /* warm off-white */
  --card: #ffffff; /* cards */

  --text: #111714; /* near-black green */
  --muted: #4f5a54; /* secondary text */
  --muted2: #6a766f; /* tertiary text */

  --line: #e2e0da; /* borders */
  --chip: #f2f0ea; /* chip background */

  --gold: #c7a24b; /* premium accent (stars/badges) */
  --info: #eaf5f1; /* light emerald highlight */
  --infoText: #0f5c4a; /* highlight text */
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== Treatment Section Styles ====== */

.section-title-shop h1 {
  color: var(--primary);
}

.section-title-shop h1 {
  color: var(--infoText);
}

.treatment-options {
  padding: 25px 20px;
  /* background: #ede9e6; */
  background: var(--bg);
}

.treatment-container {
  max-width: 1200px;
  /* margin: 0 12px; */

  margin: 0 auto;
}

.premium-badge {
  text-align: center;
  margin-bottom: 20px;
}

.premium-badge span {
  display: inline-block;
  background: #d7925a;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

/* .product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
} */

/* Product Badge */
.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  /* background: linear-gradient(135deg, #e17f30 0%, #d7925a 100%); */
  background: linear-gradient(135deg, var(--primary) 0%, var(--muted) 100%);
  color: #ffffff;
  padding: 0.5rem 1.8rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 0px 2px var(--primary2);
  z-index: 2;
}

/* Product Image Section */
/* .product-image-section {
  width: 100%;
  height: 350px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
} */

/* .product-image-section img {
  width: 100%;
  height: 100%;
  object-fit: fill;
} */

/* Product Content Section */
.product-content-section {
  padding: 20px 30px;
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* .product-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
} */

/* Hidden SKU */
.product-sku {
  display: none;
}

/* Price Section */
/* .price-section {
  margin-bottom: 12px;
  padding: 12px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
} */

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* .price-row .from-text,
.price-row .per-month {
  font-size: 1rem;
  color: var(--infoText);
  font-weight: 500;
} */

/* .product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
} */

/* Highlights Section */
/* .highlights {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 9px;
}

.highlights-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.highlights-header i {
  color: var(--primary);
  font-size: 1.1rem;
}

.highlights-header span {
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--infoText);
  line-height: 1.5;
} */

/* .highlights-list li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
} */

/* Action Buttons */
/* .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
} */

/* .whats-included-btn, */
/* .add-to-cart-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
} */

/* .whats-included-btn {
  background: #ffffff;
  color: var(--primary);
  border: none;
  cursor: pointer;
  margin-bottom: 0px;
} */

/* .add-to-cart-btn {
  background: var(--primary);
  color: var(--info);
} */

.add-to-cart-btn:hover {
  /* background: #e2893f; */
  background: var(--primary2);
  /* transform: translateY(-2px); */
  box-shadow: 0 4px 12px rgba(26, 58, 46, 0.3);
}

.action-buttons i {
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    gap: 25px;
  }

  .section-title h1 {
    font-size: 2rem;
  }

  .product-content-section {
    padding: 18px 24px;
  }
}

@media (max-width: 768px) {
  .treatment-options {
    padding: 25px 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-title h1 {
    font-size: 1.75rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .product-image-section {
    height: 240px;
  }

  .product-content-section {
    padding: 16px 20px;
  }

  .product-title {
    font-size: 1.3rem;
  }

  .product-description {
    font-size: 0.95rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .highlights {
    padding: 16px;
  }

  .action-buttons {
    gap: 10px;
  }

  /* .whats-included-btn, */
  .add-to-cart-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-title h1 {
    font-size: 1.5rem;
  }

  .product-badge {
    top: 5px;
    right: 15px;
    left: unset;
    font-size: 12px;
    padding: 5px 5px;
    width: fit-content;
  }

  .product-image-section {
    height: 200px;
  }

  .product-content-section {
    padding: 14px 16px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .highlights {
    padding: 14px;
  }

  .highlights-list li {
    font-size: 0.9rem;
    padding: 6px 0 6px 20px;
  }
}
/* --- Important Information Redesigned --- */
.important-info {
  background-color: transparent;
  box-shadow: none;
  margin: 15px 0;
  padding: 0 12px;
}

.important-info-header {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  /* color: #1a1a1a; */
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.important-info-header i {
  /* color: #e17f30; */
  color: var(--primary);
}

/* Cards container */
.info-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Individual info card */
.info-card-shop {
  flex: 1 1 calc(25% - 20px);
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(225, 127, 48, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card-shop:hover {
  /* transform: translateY(-6px); */
  /* box-shadow: 0 12px 35px rgba(225, 127, 48, 0.15); */
  /* border-color: #e17f30; */
  border-color: var(--primary);
}

/* Icon */
.info-card-shop .info-icon {
  /* color: #e17f30; */
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px var(--muted2);
}

/* Title */
.info-card-shop .info-title {
  font-weight: 700;
  font-size: 1.1rem;
  /* color: #1a1a1a; */
  color: var(--primary);
  margin-bottom: 8px;
}

/* Description */
.info-card-shop .info-description {
  /* color: #666; */
  color: var(--infoText);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Mobile --- */
@media (max-width: 992px) {
  .info-card-shop {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .product-card-shop {
    width: 400px;
  }
  .info-card-shop {
    flex: 1 1 100%;
  }

  .important-info-header {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #ffffff;
  margin: 8% auto;
  padding: 20px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  /* background: #e17f30; */
  background: var(--muted2);
  /* color: white; */
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.modal-list {
  list-style: none;
  padding: 0;
}

.modal-list li {
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
  font-size: clamp(0.813rem, 1.8vw, 0.9rem);
  color: #666;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.modal-list li:last-child {
  border-bottom: none;
}

.modal-list i {
  color: #e17f30;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.modal-list span {
  color: #666;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h1 {
    font-size: 2.2rem;
  }
  .treatment-container {
    margin: 10px 12px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image-container {
    height: 220px;
  }

  .product-content {
    padding: 24px;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .product-price {
    font-size: 2rem;
  }

  .modal-content {
    margin: 15% auto;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .treatment-options {
    padding: 3rem 0rem 1rem;
  }

  .product-image-container {
    height: 200px;
  }

  .badge-popular-overlay {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    top: 10px;
    right: 10px;
  }
}
