/** Shopify CDN: Minification failed

Line 19:0 All "@import" rules must come first

**/
/* MALE WELLNESS SPA - CUSTOM STYLING */
/* Brand Colors: Warm Cream #F5EFE7, Wine Burgundy #8B3A50, Deep Plum #4A3850, True Black #0D0D0D */

:root {
  --color-cream: #F5EFE7;
  --color-burgundy: #8B3A50;
  --color-plum: #4A3850;
  --color-black: #0D0D0D;
  --color-white: #FFFFFF;
  --color-gray: #8B8680;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@600&family=Inter:wght@400;500;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-black);
  line-height: 1.2;
}

h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--color-black);
  font-weight: 600;
}

p {
  font-family: 'Inter', sans-serif;
  color: var(--color-black);
  font-size: 16px;
  line-height: 1.6;
}

/* BUTTONS */
.btn-primary, .button {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover, .button:hover {
  background-color: var(--color-plum);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-plum);
  border: 2px solid var(--color-plum);
  padding: 12px 30px;
}

.btn-secondary:hover {
  background-color: var(--color-plum);
  color: var(--color-white);
}

/* HERO SECTION */
.hero-wellness {
  background-color: var(--color-cream);
  padding: 80px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 600px;
}

.hero-wellness-content {
  flex: 1;
}

.hero-wellness h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: var(--color-black);
  font-weight: 700;
}

.hero-wellness-subheadline {
  font-size: 20px;
  color: var(--color-plum);
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-wellness-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.hero-wellness-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* VALUE PROPOSITION */
.value-prop {
  background-color: var(--color-white);
  padding: 80px 40px;
}

.value-prop h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.value-prop-intro {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 50px;
  max-width: 600px;
}

.value-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-bullet {
  display: flex;
  gap: 20px;
}

.value-bullet-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 24px;
  flex-shrink: 0;
}

.value-bullet-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-bullet-text p {
  font-size: 15px;
  color: var(--color-gray);
}

/* SERVICES GRID */
.services-grid {
  background-color: var(--color-cream);
  padding: 80px 40px;
}

.services-grid h2 {
  font-size: 42px;
  margin-bottom: 60px;
  text-align: center;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-price {
  font-size: 18px;
  color: var(--color-burgundy);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-benefit {
  font-size: 15px;
  color: var(--color-gray);
  margin-bottom: 25px;
  min-height: 45px;
}

.service-card a {
  color: var(--color-burgundy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: var(--color-plum);
}

/* HOW IT WORKS */
.how-it-works {
  background-color: var(--color-white);
  padding: 80px 40px;
}

.how-it-works h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-burgundy);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  padding-top: 0;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-burgundy);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-burgundy);
}

.timeline-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 14px;
  color: var(--color-gray);
}

/* TESTIMONIALS */
.testimonials {
  background-color: var(--color-cream);
  padding: 80px 40px;
}

.testimonials h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--color-burgundy);
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--color-black);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--color-burgundy);
  opacity: 0.3;
}

.testimonial-quote::after {
  content: '"';
  font-size: 48px;
  color: var(--color-burgundy);
  opacity: 0.3;
}

.testimonial-attribution {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 600;
}

/* TRUST SECTION */
.trust-section {
  background-color: var(--color-plum);
  color: var(--color-white);
  padding: 80px 40px;
  text-align: center;
}

.trust-section h2 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 30px;
}

.trust-intro {
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.trust-bullet {
  font-size: 16px;
  padding: 20px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}

.trust-bullet::before {
  content: '✓ ';
  color: var(--color-burgundy);
  font-weight: 700;
  margin-right: 10px;
}

/* FAQ ACCORDION */
.faq-section {
  background-color: var(--color-white);
  padding: 80px 40px;
}

.faq-section h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-cream);
  padding: 25px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-burgundy);
}

.faq-toggle {
  font-size: 24px;
  color: var(--color-burgundy);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 16px;
  color: var(--color-gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
  padding: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 20px 0;
  margin-top: 15px;
}

/* EMAIL SIGNUP */
.email-signup-section {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  padding: 80px 40px;
  text-align: center;
}

.email-signup-section h2 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.email-signup-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.email-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.email-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.email-form button {
  padding: 14px 30px;
  background-color: var(--color-white);
  color: var(--color-burgundy);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.email-form button:hover {
  background-color: var(--color-cream);
}

/* CTA SECTION */
.cta-section {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-wellness {
    flex-direction: column;
    padding: 60px 20px;
  }

  .hero-wellness h1 {
    font-size: 36px;
  }

  .value-bullets,
  .trust-bullets,
  .testimonials-grid,
  .services-container {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
  }

  .timeline::before {
    display: none;
  }

  .email-form {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-wellness h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 32px;
  }

  .service-card,
  .value-bullet,
  .testimonial-card {
    padding: 30px 20px;
  }

  p {
    font-size: 14px;
  }
}