/* =========================
   MY ACCOUNT – MENÚ A LA DERECHA (CORREGIDO)
========================= */

/* Tipografía redondeada */
.woocommerce-account {
  font-family: "Poppins", "Nunito", "Quicksand", sans-serif;
}

/* Contenedor general */
.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 30px;
  flex-direction: row-reverse;
}

/* ================= CONTENIDO ================= */
.woocommerce-MyAccount-content {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #eee;
}

/* Títulos */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  color: #27a0a3;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ================= MENÚ ================= */
.woocommerce-MyAccount-navigation {
  flex: 0 0 260px;
  background: #fafafa;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #eee;
}

/* Lista */
.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
}

/* Ítems */
.woocommerce-MyAccount-navigation ul li {
  list-style: none;
  margin-bottom: 14px;
}

/* LINKS DEL MENÚ (CORREGIDO TEXTO) */
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 14px 20px;
  border-radius: 50px;
  background-color: transparent;
  color: #27a0a3 !important; /* 🔴 asegura texto visible */
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover */
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #27a0a3;
  color: #ffffff !important;
}

/* Activo */
.woocommerce-MyAccount-navigation ul li.is-active a {
  background-color: #27a0a3;
  color: #ffffff !important;
}

/* ================= FORMULARIOS ================= */
.woocommerce-account input[type="text"],
.woocommerce-account input[type="email"],
.woocommerce-account input[type="password"],
.woocommerce-account textarea {
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  padding: 12px 14px;
  width: 100%;
}

/* Focus */
.woocommerce-account input:focus,
.woocommerce-account textarea:focus {
  outline: none;
  border-color: #27a0a3;
  box-shadow: 0 0 0 2px rgba(39,160,163,0.15);
}

/* ================= BOTONES ================= */
.woocommerce-account .button,
.woocommerce-account button {
  background-color: #27a0a3 !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  padding: 12px 26px !important;
  font-weight: 500 !important;
  border: none !important;
  transition: all 0.3s ease;
}

/* Hover botones */
.woocommerce-account .button:hover {
  background-color: #218b8e !important;
}

/* Links generales */
.woocommerce-account a {
  color: #27a0a3;
}

/* ================= MOBILE ===*
/* CONTACT FORM – VERTICAL MINIMAL */

.simple-contact-form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: "Poppins", "Nunito", "Quicksand", sans-serif;
}

.scf-title {
  text-align: center;
  font-size: 16px;
  color: #27a0a3;
  font-weight: 500;
}

.simple-contact-form input,
.simple-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  font-size: 15px;
}

.simple-contact-form input:focus,
.simple-contact-form textarea:focus {
  outline: none;
  border-color: #27a0a3;
  box-shadow: 0 0 0 2px rgba(39,160,163,0.15);
}

.simple-contact-form button {
  background-color: #27a0a3;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.simple-contact-form button:hover {
  background-color: #218b8e;
}

.scf-success {
  color: #27a0a3;
  font-weight: 500;
  text-align: center;
}
.discovery-wrapper {
  text-align: center;
  width: 100%;
  margin: 60px auto;
}

.discovery-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #36a4a6, #5fc1c3);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 18px rgba(54, 164, 166, 0.35);
  transition: all 0.3s ease;
}

.discovery-btn:hover {
  background: linear-gradient(135deg, #2b8f91, #36a4a6);
  color: #ffffff !important;
  transform: translateY(-2px);
}
.packages-wrapper {
  text-align: center;
  width: 100%;
  margin: 60px auto;
}

.packages-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #36a4a6, #5fc1c3);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 18px rgba(54, 164, 166, 0.35);
  transition: all 0.3s ease;
}

.packages-btn:hover {
  background: linear-gradient(135deg, #2b8f91, #36a4a6);
  color: #ffffff !important;
  transform: translateY(-2px);
}
.discovery-gold-wrapper {
  text-align: center;
  width: 100%;
  margin: 60px auto;
}

.discovery-gold-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #d4c39f;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 30px;
  border: none;
  box-shadow: 0 6px 18px rgba(212, 195, 159, 0.45);
  transition: all 0.3s ease;
}

.discovery-gold-btn:hover {
  background-color: #c3b08a; /* variante más profunda */
  color: #ffffff !important;
  transform: translateY(-2px);
}
.services-circles {
  display: flex;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin: 60px 0;
  text-align: center;
}

.service-item {
  max-width: 300px;
}

/* IMAGEN CIRCULAR */
.service-image {
  width: 260px;
  height: 260px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TÍTULO */
.service-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* SUBTÍTULO */
.service-subtitle {
  display: block;
  font-size: 14px;
  color: #c2a24f;
  margin-bottom: 22px;
}

/* BOTÓN */
.service-btn {
  display: inline-block;
  background-color: #36a4a6;
  color: #ffffff !important;
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  opacity: 0.9;
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {
  .services-circles {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .service-image {
    width: 220px;
    height: 220px;
  }
/* =================================================
   HOME – GRACEFUL (FIX FINAL DEFINITIVO)
================================================= */

/* 1️⃣ OCULTAR SOLO EL TÍTULO DE LA HOME */
.home .entry-title,
.home h1.entry-title,
.home .page-title,
.home h1.page-title {
  display: none !important;
}

.home .entry-header {
  margin: 0 !important;
  padding: 0 !important;
}

/* 2️⃣ ROMPER CONTENEDOR PRINCIPAL (PERMITE FULL WIDTH) */
.home .main-content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}


/* =========================================
   OCULTAR ELEMENTOS DE TIENDA (GRACEFUL)
========================================= */

/* ❌ Quitar ordenar por */
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering,
.woocommerce .orderby,
.woocommerce-page .orderby {
  display: none !important;
}

/* ❌ Quitar “Mostrando X resultados” */
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  display: none !important;
}

/* ❌ Quitar badge de OFERTA / SALE */
.woocommerce span.onsale,
.woocommerce-page span.onsale {
  display: none !important;
}

/* ❌ Quitar estilos de producto en oferta */
.woocommerce ins,
.woocommerce-page ins {
  text-decoration: none !important;
  color: inherit !important;
  font-weight: normal !important;
}
.services-circles > * {
    transition: transform 0.6s ease;
}

.services-circles > *:hover {
    transform: translateY(-6px) scale(1.03);
}
/* ===== CONTACT FORM – GRACEFUL FIX ===== */

/* Evita que el tema aplaste el layout */
.page .contact-bg {
  min-height: 100vh !important;
  background: linear-gradient(135deg, #27a0a3, #d4c39f) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 60px 20px !important;
}

/* Tarjeta */
.page .contact-card {
  background: #ffffff !important;
  border-radius: 32px !important;
  padding: 50px !important;
  max-width: 650px !important;
  width: 100% !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15) !important;
}

/* Título */
.page .contact-card h2 {
  color: #27a0a3 !important;
  font-size: 38px !important;
  margin-bottom: 10px !important;
  font-weight: 600 !important;
}

/* Texto */
.page .subtitle {
  color: #666 !important;
  font-size: 15px !important;
  margin-bottom: 30px !important;
}

/* Íconos */
.page .social-icons a {
  color: #27a0a3 !important;
  font-size: 22px !important;
  margin-right: 16px !important;
  text-decoration: none !important;
}

.page .social-icons a:hover {
  color: #d4c39f !important;
}

/* Grid */
.page .contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

/* Inputs */
.page .contact-grid input,
.page .contact-grid textarea {
  width: 100% !important;
  padding: 15px 18px !important;
  border-radius: 22px !important;
  border: none !important;
  background: #f3f3f3 !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

/* Quita estilos nativos de Graceful */
.page input,
.page textarea,
.page button {
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* Campos largos */
.page .contact-grid .full {
  grid-column: 1 / -1 !important;
}

/* Botón */
.page .contact-grid button {
  background: #27a0a3 !important;
  color: #ffffff !important;
  border-radius: 22px !important;
  border: none !important;
  padding: 15px !important;
  font-size: 15px !important;
  cursor: pointer !important;
}

.page .contact-grid button:hover {
  background: #1f8b8e !important;
}

/* Responsive */
@media (max-width: 640px) {
  .page .contact-grid {
    grid-template-columns: 1fr !important;
  }
/* === MÁRGENES GLOBALES EN MÓVIL – TODAS LAS PÁGINAS === */
@media (max-width: 768px) {

  /* Evita que el contenido toque las orillas */
  body {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Contenedores principales del tema */
  .site,
  .site-content,
  .content-area,
  .entry-content,
  .page-content,
  main {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Texto común */
  p,
  ul,
  ol,
  blockquote {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Títulos */
  h1, h2, h3, h4, h5, h6 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Imágenes y bloques */
  img,
  figure,
  iframe {
    max-width: 100%;
    height: auto;
  }
/* === FIX BLOQUE GALERÍA / CARRUSEL WORDPRESS === */

.wp-block-gallery,
.wp-block-gallery.has-nested-images,
.wp-block-gallery.is-style-carousel {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

.wp-block-gallery img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.wp-block-gallery .swiper,
.wp-block-gallery .swiper-wrapper,
.wp-block-gallery .swiper-slide {
  height: auto !important;
}
/* === FORZAR VISIBILIDAD BLOQUE GALERÍA === */
.wp-block-gallery,
.wp-block-gallery * {
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.wp-block-gallery img {
  display: block !important;
}
/* ===== FIX DEFINITIVO CARRUSEL CORTADO ===== */

/* contenedor principal */
.image-carousel {
  height: auto !important;
  overflow: hidden;
}

/* cada slide */
.carousel-slide {
  height: auto !important;
}

/* imagen */
.carousel-slide img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
}

/* móvil */
@media (max-width: 768px) {
  .carousel-slide img {
    object-fit: contain !important;
  }
}
.carousel-caption {
  max-width: 420px;
}
/* Ocultar elementos innecesarios */
.product_meta,
.related.products,
.woocommerce-tabs,
.woocommerce-breadcrumb {
  display: none !important;
}

/* Centrar contenido */
.single-product .product {
  max-width: 900px;
  margin: 0 auto;
}

/* Botón alineado con tu diseño */
.single_add_to_cart_button {
  background-color: #27a0a3 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 14px 36px !important;
  font-size: 15px !important;
  border: none !important;
}

/* Espaciado elegante */
.summary {
  padding-top: 40px;
}
.ls-disclaimer-box {
  background: rgba(212,195,159,0.25);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
}

.ls-disclaimer-box strong {
  color: #27a0a3;
}

.ls-disclaimer-box label {
  font-weight: 500;
}
/* === FORZAR BOTONES WOOCOMMERCE EN GRACEFUL === */

/* TODOS los botones de productos */
.woocommerce ul.products li.product a,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product input,
.woocommerce ul.products li.product input[type="submit"] {

  background-color: #27a0a3 !important;
  color: #ffffff !important;

  border-radius: 999px !important;
  padding: 14px 36px !important;

  font-size: 14px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;

  border: none !important;
  box-shadow: none !important;

  display: inline-block !important;
}

/* Hover */
.woocommerce ul.products li.product a:hover,
.woocommerce ul.products li.product input:hover {
  background-color: #1f8c8f !important;
  color: #ffffff !important;
/* =========================
   EASY APPOINTMENTS – CLEAN WELLNESS STYLE
   ========================= */

/* CONTENEDOR */
.ea-bootstrap {
  max-width: 900px !important;
  margin: 60px auto !important;
  background: #ffffff !important;
  border-radius: 40px !important;
  padding: 60px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
  font-family: inherit;
}

/* SELECTS (Location / Service) */
.ea-bootstrap select {
  border-radius: 30px !important;
  padding: 14px 20px !important;
  border: 1px solid #e6e1d8 !important;
  background: #fafafa !important;
  font-size: 15px;
}

/* CALENDARIO */
.ea-bootstrap .datepicker {
  border: none !important;
}

.ea-bootstrap .datepicker table {
  width: 100%;
}

.ea-bootstrap .datepicker th {
  color: #27A0A3 !important;
  font-weight: 500;
  padding-bottom: 12px;
}

.ea-bootstrap .datepicker td {
  border-radius: 50% !important;
  transition: all 0.25s ease;
}

.ea-bootstrap .datepicker td:hover {
  background: #eaf6f6 !important;
}

.ea-bootstrap .datepicker td.active,
.ea-bootstrap .datepicker td.active:hover {
  background: #27A0A3 !important;
  color: #fff !important;
}

/* HORARIOS – ADIÓS CUADRITOS */
.ea-bootstrap .ea-time {
  display: inline-block !important;
  background: #f4f1eb !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  margin: 8px 10px 0 0 !important;
  font-size: 14px;
  border: none !important;
  transition: all 0.3s ease;
}

/* HOVER HORAS */
.ea-bootstrap .ea-time:hover {
  background: #d9f0f1 !important;
  transform: translateY(-2px);
}

/* HORA SELECCIONADA */
.ea-bootstrap .ea-time.selected {
  background: #27A0A3 !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* FORMULARIO */
.ea-bootstrap input,
.ea-bootstrap textarea {
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  border-radius: 0 !important;
  padding: 14px 6px !important;
  background: transparent !important;
}

/* BOTÓN */
.ea-bootstrap button,
.ea-bootstrap .btn-primary {
  background: #27A0A3 !important;
  border-radius: 50px !important;
  padding: 14px 40px !important;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

.ea-bootstrap button:hover {
  background: #1f8688 !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(39,160,163,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .ea-bootstrap {
    padding: 40px 24px !important;
    border-radius: 28px !important;
  }

  .ea-bootstrap .ea-time {
    margin-bottom: 10px !important;
  }
}}
/* =========================
   EASY APPOINTMENTS – CLEAN WELLNESS STYLE
   ========================= */

/* CONTENEDOR */
.ea-bootstrap {
  max-width: 900px !important;
  margin: 60px auto !important;
  background: #ffffff !important;
  border-radius: 40px !important;
  padding: 60px !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
  font-family: inherit;
}

/* SELECTS (Location / Service) */
.ea-bootstrap select {
  border-radius: 30px !important;
  padding: 14px 20px !important;
  border: 1px solid #e6e1d8 !important;
  background: #fafafa !important;
  font-size: 15px;
}

/* CALENDARIO */
.ea-bootstrap .datepicker {
  border: none !important;
}

.ea-bootstrap .datepicker table {
  width: 100%;
}

.ea-bootstrap .datepicker th {
  color: #27A0A3 !important;
  font-weight: 500;
  padding-bottom: 12px;
}

.ea-bootstrap .datepicker td {
  border-radius: 50% !important;
  transition: all 0.25s ease;
}

.ea-bootstrap .datepicker td:hover {
  background: #eaf6f6 !important;
}

.ea-bootstrap .datepicker td.active,
.ea-bootstrap .datepicker td.active:hover {
  background: #27A0A3 !important;
  color: #fff !important;
}

/* HORARIOS – ADIÓS CUADRITOS */
.ea-bootstrap .ea-time {
  display: inline-block !important;
  background: #f4f1eb !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  margin: 8px 10px 0 0 !important;
  font-size: 14px;
  border: none !important;
  transition: all 0.3s ease;
}

/* HOVER HORAS */
.ea-bootstrap .ea-time:hover {
  background: #d9f0f1 !important;
  transform: translateY(-2px);
}

/* HORA SELECCIONADA */
.ea-bootstrap .ea-time.selected {
  background: #27A0A3 !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* FORMULARIO */
.ea-bootstrap input,
.ea-bootstrap textarea {
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  border-radius: 0 !important;
  padding: 14px 6px !important;
  background: transparent !important;
}

/* BOTÓN */
.ea-bootstrap button,
.ea-bootstrap .btn-primary {
  background: #27A0A3 !important;
  border-radius: 50px !important;
  padding: 14px 40px !important;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

.ea-bootstrap button:hover {
  background: #1f8688 !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(39,160,163,0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .ea-bootstrap {
    padding: 40px 24px !important;
    border-radius: 28px !important;
  }

  .ea-bootstrap .ea-time {
    margin-bottom: 10px !important;
  }
}