/* ========================================
   OLYMPUS Beauty Spa & Fitness
   Page Specific Styles
   ======================================== */

/* ========================================
   HOME PAGE
   ======================================== */

/* Pillars Section */
.pillars {
  padding: var(--section-padding);
  background: var(--ivory);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  cursor: pointer;
}

.pillar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.pillar-card:hover img {
  transform: scale(1.1);
}

.pillar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  transition: var(--transition-normal);
}

.pillar-card:hover .pillar-overlay {
  background: linear-gradient(to top, rgba(201, 162, 39, 0.9) 0%, rgba(201, 162, 39, 0.3) 60%, transparent 100%);
}

.pillar-overlay h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 12px;
}

.pillar-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.pillar-overlay .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.pillar-card:hover .pillar-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Benefits Section */
.benefits {
  padding: var(--section-padding);
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background: var(--beige);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
}

.testimonial-info h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Gallery Section */
.gallery {
  padding: var(--section-padding);
  background: var(--white);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--beige);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

/* CTA Dark */
.cta-dark {
  background: var(--black-soft);
}

.cta-dark h2,
.cta-dark p {
  color: var(--white);
}

.cta-dark p {
  color: var(--gray);
}

/* ========================================
   BEAUTY PAGE
   ======================================== */

/* Story Section */
.story-section {
  padding: var(--section-padding);
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-content h2 {
  margin-bottom: 24px;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-content .signature {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 30px;
}

/* Treatments Section */
.treatments-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.treatment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.treatment-card-body {
  padding: 28px;
}

.treatment-card h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.treatment-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.treatment-card .price-tag {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Products Section */
.products-section {
  padding: var(--section-padding);
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  text-align: center;
  padding: 30px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.product-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Training Teaser */
.training-teaser {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--beige) 0%, var(--ivory) 100%);
}

.teaser-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.teaser-content h2 {
  margin-bottom: 20px;
}

.teaser-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.teaser-image {
  text-align: center;
}

.teaser-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
}

/* ========================================
   SPA PAGE
   ======================================== */

/* Spa Treatments */
.spa-treatments {
  padding: var(--section-padding);
  background: var(--ivory);
}

.spa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.spa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.spa-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.spa-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.spa-card-body {
  padding: 28px;
}

.spa-card h4 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.spa-card .duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.spa-card .duration svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.spa-card p {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.spa-card .benefits-list {
  margin-bottom: 20px;
}

.spa-card .benefits-list li {
  font-size: 0.85rem;
  color: var(--gray-dark);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.spa-card .benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Memberships */
.memberships-section {
  padding: var(--section-padding);
  background: var(--white);
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.membership-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.membership-card.featured {
  background: var(--black-soft);
  transform: scale(1.05);
}

.membership-card.featured * {
  color: var(--white);
}

.membership-card.featured p {
  color: var(--gray);
}

.membership-card:hover {
  transform: translateY(-10px);
}

.membership-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.membership-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.membership-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.membership-price {
  margin-bottom: 30px;
}

.membership-price .price {
  display: block;
}

.membership-price span {
  font-size: 0.9rem;
  color: var(--gray);
}

.membership-features {
  text-align: left;
  margin-bottom: 30px;
}

.membership-features li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.membership-card.featured .membership-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.membership-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Gift Vouchers */
.gift-vouchers {
  padding: var(--section-padding);
  background: var(--beige);
}

.voucher-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-md);
}

.voucher-content h2 {
  margin-bottom: 20px;
}

.voucher-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.voucher-image {
  text-align: center;
}

.voucher-image img {
  max-width: 100%;
  border-radius: var(--radius-md);
}

/* ========================================
   FITNESS PAGE
   ======================================== */

/* Programs Section */
.programs-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.program-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.program-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.program-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.program-card h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.program-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Fitness Benefits */
.fitness-benefits {
  padding: var(--section-padding);
  background: var(--white);
}

/* Schedule Section */
.schedule-section {
  padding: var(--section-padding);
  background: var(--beige);
}

.schedule-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-table th {
  background: var(--gold);
  color: var(--white);
  font-weight: 500;
}

.schedule-table td {
  text-align: center;
  vertical-align: middle;
}

.schedule-table .time-slot {
  font-weight: 500;
  color: var(--black);
  background: var(--ivory);
}

.schedule-table .available {
  color: var(--gold);
  font-weight: 500;
}

/* ========================================
   COURSES PAGE
   ======================================== */

/* Courses Grid */
.courses-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.course-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.course-card-body {
  padding: 30px;
}

.course-card h4 {
  margin-bottom: 12px;
}

.course-card p {
  margin-bottom: 20px;
}

.course-modules {
  margin-bottom: 24px;
}

.course-modules li {
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-dark);
}

.course-modules li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* How It Works */
.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
}

.step-card h4 {
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
}

/* ========================================
   BOOKING PAGE
   ======================================== */

.booking-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
}

.booking-form {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.booking-form h3 {
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 30px;
}

.contact-info {
  padding: 30px 0;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.contact-item-content h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-item-content p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-item-content a {
  color: var(--gold);
}

.contact-item-content a:hover {
  text-decoration: underline;
}

/* Map Section */
.map-section {
  padding: 0 0 var(--section-padding);
  background: var(--ivory);
}

.map-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ========================================
   PLACEHOLDER IMAGES
   ======================================== */
.placeholder-img {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.85rem;
  text-align: center;
}

/* ========================================
   SHOP PAGE
   ======================================== */

/* Shop Filters */
.shop-filters {
  padding: 30px 0;
  background: var(--white);
  border-bottom: 1px solid var(--beige);
  position: sticky;
  top: 80px;
  z-index: 90;
}

.filters-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-dark);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover {
  background: var(--beige);
  color: var(--black);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.filter-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-sort label {
  font-size: 0.9rem;
  color: var(--gray);
}

.sort-select {
  padding: 10px 16px;
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--black);
  cursor: pointer;
  min-width: 180px;
}

.sort-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Shop Section */
.shop-section {
  padding: var(--section-padding);
  background: var(--ivory);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Product Card */
.shop-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image img,
.product-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.shop-product-card:hover .product-image img,
.shop-product-card:hover .product-image .placeholder-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.bestseller {
  background: var(--gold);
  color: var(--white);
}

.product-badge.new {
  background: var(--black-soft);
  color: var(--white);
}

.product-badge.sale {
  background: #dc3545;
  color: var(--white);
}

.product-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-normal);
}

.shop-product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.action-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gray-dark);
  stroke-width: 2;
}

.action-btn:hover {
  background: var(--gold);
}

.action-btn:hover svg {
  stroke: var(--white);
}

.action-btn.active {
  background: var(--gold);
}

.action-btn.active svg {
  fill: var(--white);
  stroke: var(--white);
}

/* Product Info */
.product-info {
  padding: 24px;
}

.product-brand {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-description {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars-small {
  display: flex;
  gap: 2px;
}

.stars-small svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.rating-count {
  font-size: 0.8rem;
  color: var(--gray);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--black);
}

.product-price-old {
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-right: 8px;
}

.add-to-cart {
  padding: 10px 20px;
}

.add-to-cart.added {
  background: #28a745;
  border-color: #28a745;
}

/* Load More */
.load-more-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Shop Features */
.shop-features {
  padding: 60px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}
