/*
Theme Name: Nastir
Theme URI: https://example.com
Author: Nastir
Description: Tema WordPress ligero para gastronomia, bienestar, citas y reservas.
Version: 0.1.9
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 8.3
Text Domain: nastir
*/

:root {
  --nastir-color-primary: #0095d5;
  --nastir-color-primary-rgb: 0, 149, 213;
  --nastir-color-accent: #3156a3;
  --nastir-color-dark: #2d352c;
  --nastir-color-text: #666666;
  --nastir-color-muted: #888888;
  --nastir-color-surface: #f3f9fd;
  --nastir-color-background: #ffffff;
  --nastir-font-body: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nastir-font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nastir-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nastir-shadow: 0 10px 25px -5px rgba(26, 30, 66, 0.04), 0 8px 10px -6px rgba(26, 30, 66, 0.04);
  --nastir-shadow-hover: 0 20px 25px -5px rgba(0, 149, 213, 0.1), 0 10px 10px -6px rgba(0, 149, 213, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--nastir-color-text);
  background: var(--nastir-color-background);
  font-family: var(--nastir-font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#main {
  flex-grow: 1;
}

.single #main,
.page:not(.home) #main {
  padding: 80px 0;
}

a {
  color: inherit;
  text-decoration: none !important;
  transition: var(--nastir-transition);
}

a:hover,
a:focus,
a:active {
  text-decoration: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--nastir-transition);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 0;
}

.site-brand__name {
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, var(--nastir-color-primary) 0%, var(--nastir-color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.custom-logo,
.site-brand__logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.site-footer__logo img {
  max-height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--nastir-color-dark);
  font-size: 14px;
  font-weight: 600;
}

.site-menu a {
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition: var(--nastir-transition);
}

.site-menu .nastir-button-menu {
  background: var(--nastir-color-primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 149, 213, 0.2);
}

.site-menu .nastir-button-menu:hover {
  background: var(--nastir-color-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(49, 86, 163, 0.3);
}

.site-menu .nastir-button-menu::after {
  display: none;
}

.site-menu li:not(:last-child) a:not(.nastir-button-menu) {
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}

.site-menu a:not(.nastir-button-menu)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--nastir-color-primary) 0%, var(--nastir-color-accent) 100%);
  transition: var(--nastir-transition);
}

.site-menu a:not(.nastir-button-menu):hover::after,
.site-menu .current-menu-item > a:not(.nastir-button-menu)::after {
  width: 100%;
}

.site-menu a:not(.nastir-button-menu):hover,
.site-menu .current-menu-item > a:not(.nastir-button-menu) {
  color: var(--nastir-color-primary);
}

.site-footer {
  color: #fff;
  background: var(--nastir-color-dark);
  padding: 60px 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__brand-col p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer__title {
  font-family: var(--nastir-font-heading);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 4px;
}

.site-footer__social {
  margin-top: 8px;
}

.site-footer__social .social-icons {
  display: flex;
  gap: 10px;
}

.site-footer__social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--nastir-transition);
  text-decoration: none;
}

.site-footer__social .social-icon:hover {
  background: var(--nastir-color-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 149, 213, 0.25);
}

.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.4;
}

.site-footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--nastir-color-primary);
}

.site-footer__contact-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--nastir-transition);
}

.site-footer__contact-list a:hover {
  color: var(--nastir-color-primary);
}

.site-menu--footer {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-menu--footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14.5px;
  transition: var(--nastir-transition);
}

.site-menu--footer a:hover {
  color: var(--nastir-color-primary);
  padding-left: 4px;
}

.site-footer__bottom {
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.15);
}

.site-footer__bottom-inner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-align: center;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 8px 12px;
  background: #fff;
  color: #111;
}

.skip-link:focus {
  left: 12px;
}

/* Floating WhatsApp Button Premium */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: var(--nastir-transition);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Tooltip WhatsApp */
.floating-whatsapp .whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--nastir-transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.nastir-privacy-strip {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: min(520px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(45, 53, 44, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--nastir-color-dark);
  box-shadow: 0 12px 30px rgba(45, 53, 44, 0.08);
  backdrop-filter: blur(12px);
  transition: var(--nastir-transition);
}

.nastir-privacy-strip.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.nastir-privacy-strip__text {
  min-width: 0;
}

.nastir-privacy-strip__text span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
}

.nastir-privacy-strip__text small {
  flex: 0 0 auto;
  color: var(--nastir-color-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nastir-privacy-strip__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nastir-privacy-strip__link,
.nastir-privacy-strip__accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nastir-privacy-strip__link {
  border: 1px solid rgba(45, 53, 44, 0.16);
  color: var(--nastir-color-dark);
  background: #fff;
}

.nastir-privacy-strip__link:hover,
.nastir-privacy-strip__link:focus-visible {
  color: #fff;
  background: var(--nastir-color-dark);
  border-color: var(--nastir-color-dark);
}

.nastir-privacy-strip__accept {
  border: 1px solid var(--nastir-color-primary);
  color: #fff;
  background: var(--nastir-color-primary);
  cursor: pointer;
}

.nastir-privacy-strip__accept:hover,
.nastir-privacy-strip__accept:focus-visible {
  color: #fff;
  background: var(--nastir-color-dark);
  border-color: var(--nastir-color-dark);
}

@media (max-width: 560px) {
  .nastir-privacy-strip {
    right: 18px;
    grid-template-columns: 1fr;
  }

  .nastir-privacy-strip__actions {
    width: 100%;
  }

  .nastir-privacy-strip__link,
  .nastir-privacy-strip__accept {
    flex: 1;
  }
}

.nastir-hero {
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
  background: 
    radial-gradient(circle at 80% 20%, rgba(217, 70, 239, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    var(--nastir-color-surface);
}

.nastir-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 350px);
  gap: 32px;
  align-items: center;
}

.nastir-hero__content h1,
.nastir-section h2,
.nastir-booking-band h2 {
  margin: 0;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1px;
}

.nastir-hero__content h1 {
  max-width: 680px;
  margin-top: 16px;
  font-size: clamp(40px, 6vw, 62px);
}

.nastir-hero__content p {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--nastir-color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.nastir-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--nastir-shadow);
}

.nastir-hero__booking {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.nastir-hero__booking .hero-bookings-calendar {
  max-width: 350px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(0, 149, 213, 0.08);
  box-shadow: var(--nastir-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nastir-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 16px;
  border-radius: 999px;
  color: var(--nastir-color-primary);
  background: rgba(139, 92, 246, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nastir-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}

.nastir-button,
.nastir-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-weight: 700;
  border-radius: 8px;
  font-size: 16px;
}

.nastir-button {
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--nastir-color-primary) 0%, var(--nastir-color-accent) 100%);
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4);
}

.nastir-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(139, 92, 246, 0.5);
}

.nastir-button--light {
  color: var(--nastir-color-dark);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--nastir-shadow);
}

.nastir-button--light:hover {
  background: var(--nastir-color-surface);
  box-shadow: var(--nastir-shadow-hover);
}

.nastir-link {
  color: var(--nastir-color-primary);
  text-decoration: none;
  font-weight: 700;
}

.nastir-link:hover {
  color: var(--nastir-color-accent);
}

.nastir-section {
  padding: 90px 0;
}

.nastir-page-hero {
  padding: 86px 0 58px;
  background:
    radial-gradient(circle at 85% 15%, rgba(var(--nastir-color-primary-rgb), 0.08) 0%, transparent 45%),
    var(--nastir-color-surface);
}

.nastir-page-hero--compact .site-shell {
  max-width: 860px;
}

.nastir-page-hero h1 {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -1px;
}

.nastir-page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--nastir-color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.nastir-section--soft {
  background: var(--nastir-color-surface);
}

.nastir-section--warm {
  background: #faf8f5; /* Warm almond/cream background */
}

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

.nastir-section h2,
.nastir-booking-band h2 {
  margin-top: 16px;
  font-size: clamp(32px, 4.5vw, 48px);
}

.nastir-section p,
.nastir-booking-band p {
  color: var(--nastir-color-muted);
  font-size: 17px;
  line-height: 1.7;
}

.nastir-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nastir-checks li {
  position: relative;
  min-height: 100px;
  padding: 24px 24px 24px 60px;
  border: 1px solid rgba(139, 92, 246, 0.06);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--nastir-shadow);
  font-weight: 600;
  font-size: 15px;
  color: var(--nastir-color-dark);
  transition: var(--nastir-transition);
}

.nastir-checks li:hover {
  transform: translateY(-3px);
  box-shadow: var(--nastir-shadow-hover);
  border-color: rgba(139, 92, 246, 0.15);
}

.nastir-checks li::before {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--nastir-color-primary) 0%, var(--nastir-color-accent) 100%);
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.nastir-section__head {
  max-width: 720px;
  margin-bottom: 48px;
}

.nastir-card-grid,
.nastir-practitioners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.nastir-card-grid--directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.nastir-card,
.nastir-practitioner {
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.05);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--nastir-shadow);
  transition: var(--nastir-transition);
}

.nastir-card:hover,
.nastir-practitioner:hover {
  transform: translateY(-6px);
  box-shadow: var(--nastir-shadow-hover);
  border-color: rgba(139, 92, 246, 0.15);
}

.nastir-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: var(--nastir-transition);
}

.nastir-card:hover img {
  transform: scale(1.05);
}

.nastir-card__body {
  padding: 28px;
}

.nastir-card__media {
  display: block;
  overflow: hidden;
}

.nastir-cita-card h2 {
  margin: 0 0 12px;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  font-size: 24px;
  line-height: 1.2;
}

.nastir-cita-card h2 a {
  text-decoration: none;
}

.nastir-cita-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.nastir-cita-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--nastir-color-primary);
  background: rgba(var(--nastir-color-primary-rgb), 0.08);
  font-size: 12px;
  font-weight: 800;
}

.nastir-directory-card__note {
  margin-top: 12px;
  color: var(--nastir-color-muted);
  font-size: 14px;
}

.nastir-event-card__date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--nastir-color-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nastir-event-card__date strong {
  color: var(--nastir-color-dark);
  font-size: 16px;
}

.nastir-pagination {
  margin-top: 42px;
}

.nastir-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nastir-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(var(--nastir-color-primary-rgb), 0.16);
  border-radius: 12px;
  background: #fff;
  color: var(--nastir-color-dark);
  font-weight: 800;
  text-decoration: none;
}

.nastir-pagination .page-numbers.current,
.nastir-pagination .page-numbers:hover {
  color: #fff;
  background: var(--nastir-color-primary);
  border-color: var(--nastir-color-primary);
}

.nastir-empty-state {
  padding: 34px;
  border: 1px dashed rgba(var(--nastir-color-primary-rgb), 0.3);
  border-radius: 14px;
  background: #fff;
  color: var(--nastir-color-muted);
  box-shadow: var(--nastir-shadow);
}

.nastir-card h3,
.nastir-practitioner h3 {
  margin: 0 0 12px;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  font-size: 22px;
  font-weight: 700;
}

.nastir-card h3 a,
.nastir-practitioner h3 a {
  text-decoration: none !important;
  transition: var(--nastir-transition);
}

.nastir-card:hover h3 a,
.nastir-practitioner:hover h3 a {
  color: var(--nastir-color-primary);
  text-decoration: none !important;
}

.nastir-card p,
.nastir-practitioner p {
  margin: 0;
  line-height: 1.6;
}

.nastir-practitioners {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.nastir-practitioner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.06);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--nastir-shadow);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  padding: 40px 30px;
  box-sizing: border-box;
}

.nastir-practitioner:hover {
  transform: translateY(-8px);
  box-shadow: var(--nastir-shadow-hover);
  border-color: rgba(139, 92, 246, 0.15);
}

.nastir-practitioner__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 3px solid var(--nastir-color-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.nastir-practitioner__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.nastir-practitioner__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.nastir-practitioner__location {
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(139, 92, 246, 0.08);
  color: var(--nastir-color-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 30px;
}

.nastir-practitioner__body h3 {
  margin: 0 0 14px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--nastir-color-dark);
}

.nastir-practitioner__body h3 a {
  color: var(--nastir-color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nastir-practitioner__body h3 a:hover {
  color: var(--nastir-color-primary);
}

.nastir-practitioner__body p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--nastir-color-text);
  flex-grow: 1;
}

.nastir-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 46px;
  align-items: center;
}

.nastir-about-hero__image {
  margin: 0;
}

.nastir-about-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--nastir-shadow);
}

.nastir-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.nastir-about-story__content,
.nastir-about-story__panel {
  padding: 34px;
  border: 1px solid rgba(var(--nastir-color-primary-rgb), 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--nastir-shadow);
}

.nastir-about-story__content h2,
.nastir-about-story__panel h3 {
  margin: 14px 0 18px;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  line-height: 1.18;
}

.nastir-about-story__content h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.nastir-about-story__panel h3 {
  font-size: 26px;
}

.nastir-about-story__content p,
.nastir-about-story__panel p {
  margin: 0 0 18px;
}

.nastir-about-story__detail {
  margin-top: 18px;
}

.nastir-about-story__detail p {
  margin: 0;
  color: var(--nastir-color-text);
  font-size: 16px;
  line-height: 1.72;
}

.nastir-about-story__panel .nastir-checks {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.nastir-about-story__panel .nastir-checks li {
  min-height: auto;
}

.nastir-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.nastir-contact-card {
  padding: 34px;
  border: 1px solid rgba(var(--nastir-color-primary-rgb), 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--nastir-shadow);
}

.nastir-contact-card--accent {
  background: var(--nastir-color-surface);
}

.nastir-contact-card h2 {
  margin: 0 0 24px;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.nastir-contact-card p {
  margin: 0 0 22px;
}

.nastir-contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.nastir-contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(var(--nastir-color-primary-rgb), 0.09);
}

.nastir-contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nastir-contact-list dt {
  margin-bottom: 4px;
  color: var(--nastir-color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nastir-contact-list dd {
  margin: 0;
  color: var(--nastir-color-dark);
  font-size: 18px;
  font-weight: 700;
}

.nastir-contact-list a,
.nastir-contact-social a {
  color: var(--nastir-color-dark);
  text-decoration: none;
}

.nastir-contact-list a:hover,
.nastir-contact-social a:hover {
  color: var(--nastir-color-primary);
}

.nastir-contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.nastir-contact-social a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(var(--nastir-color-primary-rgb), 0.14);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.nastir-booking-band {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(135deg, var(--nastir-color-primary) 0%, var(--nastir-color-accent) 100%);
  position: relative;
  overflow: hidden;
}

.nastir-booking-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 80%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.nastir-booking-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 2;
}

.nastir-booking-band .nastir-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.nastir-booking-band h2,
.nastir-booking-band p {
  color: #fff;
}

.nastir-booking-band p {
  margin-bottom: 0;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-footer__inner,
  .nastir-booking-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__inner {
    gap: 36px;
  }

  .site-footer__grid,
  .nastir-hero__grid,
  .nastir-about,
  .nastir-about-hero,
  .nastir-about-story,
  .nastir-contact-grid,
  .nastir-card-grid,
  .nastir-practitioners {
    grid-template-columns: 1fr;
  }

  .nastir-hero__booking {
    justify-content: center;
  }

  .nastir-checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nastir-hero {
    padding-top: 46px;
  }

  .nastir-hero__content h1 {
    font-size: 38px;
  }
}

/* Nuevos Estilos del Hero e Ilustración Premium */
.nastir-hero__media-col {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.nastir-hero__media-wrapper {
  max-width: 450px;
  width: 100%;
  animation: floatIllustration 6s ease-in-out infinite;
}

.nastir-hero__illustration {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 149, 213, 0.15));
}

@keyframes floatIllustration {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.nastir-button--whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
}

.nastir-button--whatsapp:hover {
  background: #20ba5a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
}

.nastir-section--booking-calendar-home {
  background: var(--nastir-color-surface);
  padding: 80px 0;
  border-top: 1px solid rgba(0, 149, 213, 0.06);
}

.nastir-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.nastir-button svg {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* Estilos para la vista individual de profesional (practitioner) */
.nastir-practitioner-single {
  padding: 80px 0;
  background: var(--nastir-color-surface);
}

.nastir-practitioner-single__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}

.nastir-practitioner-single__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nastir-practitioner-single__photo-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(139, 92, 246, 0.08);
  aspect-ratio: 1 / 1.25;
}

.nastir-practitioner-single__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.nastir-practitioner-single__info {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(139, 92, 246, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nastir-practitioner-single__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.05);
  padding-bottom: 16px;
}

.nastir-practitioner-single__meta-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.nastir-practitioner-single__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--nastir-color-primary);
}

.nastir-practitioner-single__meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--nastir-color-dark);
}

.nastir-practitioner-single__meta-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--nastir-color-text);
  margin: 0;
}

.nastir-practitioner-single__cta-box {
  margin-top: 10px;
}

.nastir-practitioner-single__content {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(139, 92, 246, 0.05);
}

.nastir-practitioner-single__content h1 {
  font-size: 42px;
  margin: 12px 0 28px 0;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
}

.nastir-practitioner-single__bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--nastir-color-text);
}

.nastir-practitioner-single__bio p {
  margin-bottom: 20px;
}

/* Responsivo para tablet y móviles */
@media (max-width: 900px) {
  .nastir-practitioner-single__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nastir-practitioner-single__sidebar {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .nastir-practitioner-single__content {
    padding: 30px;
  }
}

/* Carrusel horizontal de posts filtrados por categoría */
.nastir-slider-nav {
  display: flex;
  gap: 12px;
}

.nastir-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.1);
  color: var(--nastir-color-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.nastir-slider-btn:hover {
  background: var(--nastir-color-primary);
  color: #ffffff;
  border-color: var(--nastir-color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.25);
}

.nastir-horizontal-slider-wrapper {
  overflow: hidden;
  margin: 0 -20px;
  padding: 10px 20px 30px 20px;
}

.nastir-horizontal-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
}

.nastir-horizontal-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.nastir-slider-card {
  flex: 0 0 350px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.05);
  box-shadow: var(--nastir-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.nastir-slider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nastir-shadow-hover);
  border-color: rgba(139, 92, 246, 0.15);
}

.nastir-slider-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.nastir-slider-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.nastir-slider-card:hover .nastir-slider-card__media img {
  transform: scale(1.05);
}

.nastir-slider-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nastir-slider-card__date {
  font-size: 12px;
  color: var(--nastir-color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.nastir-slider-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--nastir-color-dark);
  line-height: 1.4;
}

.nastir-slider-card__body h3 a {
  color: var(--nastir-color-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nastir-slider-card__body h3 a:hover {
  color: var(--nastir-color-primary);
}

.nastir-slider-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--nastir-color-text);
  margin: 0 0 20px 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .nastir-slider-card {
    flex: 0 0 290px;
  }
}

/* Hamburguesa / Toggle del menú móvil */
.menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  .site-header__inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
  }
  
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nastir-color-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  
  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-navigation-nav {
    position: fixed;
    top: 70px;
    right: 0;
    width: min(320px, 100vw);
    max-width: 100vw;
    height: calc(100vh - 70px);
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    padding: 40px 24px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    z-index: 99;
    overscroll-behavior: contain;
    overflow-y: auto;
    overflow-x: hidden;
    display: block !important;
  }

  .site-header.menu-open .site-navigation-nav {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  body.nastir-menu-open {
    overflow: hidden;
  }

  .site-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
  }

  .site-menu li {
    width: 100%;
  }

  .site-menu a {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(120, 134, 107, 0.08);
  }
  
  .site-menu a.nastir-button-menu {
    margin-top: 15px;
    text-align: center;
    border-bottom: none;
  }
}

/* Plantilla Individual de Posts de Blog y Páginas */
.nastir-post-single,
.nastir-page-single {
  background: #ffffff;
}

.nastir-post-single__header,
.nastir-page-single__header,
.nastir-therapy-single__header {
  margin-bottom: 40px;
}

.nastir-post-single__featured-wrapper,
.nastir-page-single__featured-wrapper,
.nastir-therapy-single__featured-wrapper {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(120, 134, 107, 0.08);
}

.nastir-post-single__featured-image,
.nastir-page-single__featured-image,
.nastir-therapy-single__featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nastir-post-single__content-wrapper,
.nastir-page-single__content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(120, 134, 107, 0.05);
}

.nastir-post-single__date {
  font-size: 12px;
  color: var(--nastir-color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.nastir-post-single__title,
.nastir-page-single__title,
.nastir-therapy-single__title {
  font-size: 42px;
  margin: 0 0 28px 0;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  line-height: 1.2;
}

.nastir-post-single__body,
.nastir-page-single__body,
.nastir-therapy-single__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--nastir-color-text);
}

.nastir-post-single__body p,
.nastir-page-single__body p,
.nastir-therapy-single__body p {
  margin-bottom: 24px;
}

.entry-content iframe,
.entry-content video {
  max-width: 100%;
  border-radius: 18px;
}

.entry-content iframe[src*="youtube.com"],
.entry-content iframe[src*="youtu.be"],
.entry-content iframe[src*="vimeo.com"] {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  border: 0;
  box-shadow: var(--nastir-shadow);
}

.wp-block-gallery a,
.gallery a,
.entry-content figure a[href$=".jpg"],
.entry-content figure a[href$=".jpeg"],
.entry-content figure a[href$=".png"],
.entry-content figure a[href$=".webp"] {
  cursor: zoom-in;
}

.nastir-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(22, 25, 30, 0.86);
}

.nastir-lightbox.is-open {
  display: flex;
}

.nastir-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.nastir-lightbox p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.nastir-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--nastir-color-dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.nastir-lightbox-open {
  overflow: hidden;
}

.hero-bookings-course-pay {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(120, 134, 107, 0.16);
  border-radius: 18px;
  background: #fbfcfa;
}

.hero-bookings-course-pay__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(120, 134, 107, 0.14);
}

.hero-bookings-course-pay__intro h2 {
  margin: 0;
  color: var(--nastir-color-dark);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
}

.hero-bookings-course-pay__intro p {
  margin: 0;
  color: var(--nastir-color-dark);
  font-weight: 900;
  white-space: nowrap;
}

.hero-bookings-course-pay--compact {
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-bookings-course-pay--compact .hero-bookings-course-pay__intro {
  display: none;
}

.hero-bookings-course-pay form {
  margin: 0;
}

.hero-bookings-course-pay__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--nastir-color-primary), var(--nastir-color-accent));
  color: #fff !important;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(49, 86, 163, 0.18);
  text-decoration: none;
}

.hero-bookings-course-pay__button:hover,
.hero-bookings-course-pay__button:focus-visible {
  background: var(--nastir-color-dark);
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(45, 53, 44, 0.22);
  transform: translateY(-1px);
}

.hero-bookings-course-pay__button.is-secondary {
  background: #fff;
  color: var(--nastir-color-dark) !important;
  border: 1px solid var(--nastir-color-dark);
  box-shadow: none;
}

.hero-bookings-course-pay__button.is-secondary:hover,
.hero-bookings-course-pay__button.is-secondary:focus-visible {
  background: var(--nastir-color-dark);
  color: #fff !important;
  border-color: var(--nastir-color-dark);
}

.hero-bookings-course-pay__note {
  margin: 10px 0 0;
  color: var(--nastir-color-muted);
  font-size: 13px;
}

.hero-bookings-course-notice {
  margin: 28px 0;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 18px;
  border-left: 4px solid var(--nastir-color-primary);
  background: #eef8ff;
  color: var(--nastir-color-dark);
  box-shadow: var(--nastir-shadow);
}

.hero-bookings-course-notice h2 {
  margin: 0 0 8px;
  color: var(--nastir-color-dark);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.hero-bookings-course-notice p {
  margin: 0;
  color: var(--nastir-color-text);
  font-weight: 600;
  line-height: 1.6;
}

.hero-bookings-course-notice.is-success {
  border-left-color: #16a34a;
  background: #ecfdf3;
}

.hero-bookings-course-notice.is-warning {
  border-left-color: #d97706;
  background: #fff7ed;
}

.hero-bookings-course-notice.is-error {
  border-left-color: #dc2626;
  background: #fef2f2;
}

.hero-bookings-course-notice__bank {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(120, 134, 107, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--nastir-color-dark);
  font-weight: 600;
  line-height: 1.65;
}

.hero-bookings-course-notice__bank strong {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 800;
}

.hero-bookings-course-notice__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 18px 0 0;
}

.hero-bookings-course-notice__details div {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-bookings-course-notice__details dt {
  margin: 0 0 4px;
  color: var(--nastir-color-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-bookings-course-notice__details dd {
  margin: 0;
  color: var(--nastir-color-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.hero-bookings-course-notice__actions {
  margin-top: 18px !important;
}

@media (max-width: 640px) {
  .hero-bookings-course-pay__intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-bookings-course-pay__intro p {
    white-space: normal;
  }

  .hero-bookings-course-notice__details {
    grid-template-columns: 1fr;
  }
}

.nastir-course-single {
  padding: 64px 0 90px;
}

.nastir-course-single__hero {
  margin-bottom: 38px;
}

.nastir-course-single__featured-wrapper {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--nastir-shadow);
}

.nastir-course-single__featured-image {
  width: 100%;
  height: clamp(320px, 42vw, 560px);
  object-fit: cover;
}

.nastir-course-single__content-wrapper {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(120, 134, 107, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--nastir-shadow);
}

.nastir-course-single__title {
  margin: 10px 0 22px;
  color: var(--nastir-color-dark);
  font-family: var(--nastir-font-heading);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.nastir-course-single__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.nastir-course-single__meta div {
  padding: 14px;
  border: 1px solid rgba(120, 134, 107, 0.14);
  border-radius: 14px;
  background: #fbfcfa;
}

.nastir-course-single__meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--nastir-color-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nastir-course-single__meta strong {
  display: block;
  color: var(--nastir-color-dark);
  font-size: 15px;
  line-height: 1.35;
}

.nastir-course-single__body {
  color: var(--nastir-color-text);
}

.nastir-course-single__body:empty {
  display: none;
}

@media (max-width: 760px) {
  .nastir-course-single {
    padding: 34px 0 64px;
  }

  .nastir-course-single__content-wrapper {
    padding: 24px;
    border-radius: 18px;
  }

  .nastir-course-single__featured-image {
    height: 280px;
  }

  .nastir-course-single__meta {
    grid-template-columns: 1fr;
  }
}

/* Plantilla Individual de Tipos de Cita / Terapias */
.nastir-therapy-single {
  background: var(--nastir-color-surface);
}

.nastir-therapy-single__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

.nastir-therapy-single__content {
  background: #ffffff;
  border-radius: 28px;
  padding: 50px;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(120, 134, 107, 0.05);
}

.nastir-therapy-single__sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.nastir-therapy-single__meta-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--nastir-shadow);
  border: 1px solid rgba(120, 134, 107, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nastir-therapy-single__meta-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--nastir-color-dark);
}

.nastir-therapy-single__meta-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(120, 134, 107, 0.08);
  padding-bottom: 12px;
}

.nastir-therapy-single__meta-row-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--nastir-color-muted);
}

.nastir-therapy-single__meta-row-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--nastir-color-dark);
}

.nastir-therapy-single__cta-bottom {
  display: none;
  margin-top: 30px;
}

.nastir-therapy-single__meta-mobile {
  display: none;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px;
  background: #fbfbfb;
  border-radius: 12px;
  border: 1px solid rgba(120, 134, 107, 0.05);
}

.nastir-therapy-single__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nastir-therapy-single__meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--nastir-color-muted);
  font-weight: 700;
}

.nastir-therapy-single__meta-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--nastir-color-dark);
}



@media (max-width: 991px) {
  .nastir-therapy-single__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .nastir-therapy-single__sidebar {
    display: none;
  }
  
  .nastir-therapy-single__cta-bottom {
    display: block;
  }
  
  .nastir-therapy-single__meta-mobile {
    display: flex;
  }
}

@media (max-width: 560px) {
  .nastir-post-single__content-wrapper,
  .nastir-page-single__content-wrapper,
  .nastir-therapy-single__content {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .nastir-post-single__title,
  .nastir-page-single__title,
  .nastir-therapy-single__title {
    font-size: 28px;
  }
}

/* Mejoras estéticas Premium para Reservar (Checkout) */
.hero-bookings-checkout__form p {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.hero-bookings-checkout__form label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--nastir-color-dark);
  margin-bottom: 8px;
}

.hero-bookings-checkout select,
.hero-bookings-checkout__form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(120, 134, 107, 0.15);
  border-radius: 10px;
  font-family: var(--nastir-font-body);
  font-size: 15px;
  background: #ffffff;
  color: var(--nastir-color-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.hero-bookings-checkout select:focus,
.hero-bookings-checkout__form input:focus {
  outline: none;
  border-color: var(--nastir-color-primary);
  box-shadow: 0 0 0 4px rgba(120, 134, 107, 0.08);
}

.hero-bookings-checkout__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(135deg, var(--nastir-color-primary), var(--nastir-color-accent));
  color: #ffffff !important;
  font-weight: 700;
  text-align: center;
  padding: 16px 32px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(120, 134, 107, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bookings-checkout__button:hover:not(:disabled),
.hero-bookings-checkout__button:focus-visible:not(:disabled) {
  background: var(--nastir-color-dark);
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(120, 134, 107, 0.2);
  transform: translateY(-2px);
}

.hero-bookings-checkout__button.is-secondary {
  background: #ffffff;
  color: var(--nastir-color-dark) !important;
  border: 2px solid var(--nastir-color-dark);
  box-shadow: none;
}

.hero-bookings-checkout__button.is-secondary:hover:not(:disabled),
.hero-bookings-checkout__button.is-secondary:focus-visible:not(:disabled) {
  background: var(--nastir-color-dark);
  color: #ffffff !important;
  border-color: var(--nastir-color-dark);
}

/* Mejoras para Nosotros y Contacto */
.nastir-about-story__content,
.nastir-about-story__panel,
.nastir-contact-card {
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(120, 134, 107, 0.08);
  box-shadow: 0 10px 30px rgba(120, 134, 107, 0.04);
}

@media (max-width: 768px) {
  .nastir-about-hero,
  .nastir-about-story,
  .nastir-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Sobreescritura estética y premium para el Calendario del Plugin */
.hero-bookings-calendar {
  --hb-navy: var(--nastir-color-dark) !important;
  --hb-blue: var(--nastir-color-primary) !important;
  --hb-cyan: var(--nastir-color-accent) !important;
  --hb-soft: var(--nastir-color-surface) !important;
  --hb-line: rgba(120, 134, 107, 0.15) !important;
  
  border: 1px solid rgba(120, 134, 107, 0.15) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  box-shadow: 0 10px 30px rgba(120, 134, 107, 0.05) !important;
  width: 100% !important;
  max-width: 380px !important;
}

.hero-bookings-calendar select {
  border: 1.5px solid rgba(120, 134, 107, 0.15) !important;
  border-radius: 8px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  color: var(--nastir-color-dark) !important;
}

.hero-bookings-calendar select:focus {
  border-color: var(--nastir-color-primary) !important;
  box-shadow: 0 0 0 3px rgba(120, 134, 107, 0.1) !important;
}

.hero-bookings-calendar__monthbar strong {
  color: var(--nastir-color-dark) !important;
}

.hero-bookings-calendar__icon {
  border: 1.5px solid rgba(120, 134, 107, 0.15) !important;
  border-radius: 8px !important;
  background: var(--nastir-color-surface) !important;
  color: var(--nastir-color-dark) !important;
}

.hero-bookings-calendar__icon:hover:not(:disabled) {
  background: rgba(120, 134, 107, 0.1) !important;
  border-color: var(--nastir-color-primary) !important;
  color: var(--nastir-color-primary) !important;
}

.hero-bookings-calendar__day {
  border: 1.5px solid rgba(120, 134, 107, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(120, 134, 107, 0.02) !important;
  color: var(--nastir-color-dark) !important;
  font-weight: 700 !important;
}

.hero-bookings-calendar__day:hover:not(:disabled) {
  border-color: var(--nastir-color-primary) !important;
  background: rgba(120, 134, 107, 0.08) !important;
  color: var(--nastir-color-primary) !important;
}

.hero-bookings-calendar__day:disabled {
  color: #cbd5e1 !important;
  background: #f8fafc !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
}

.hero-bookings-calendar__day.is-selected {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--nastir-color-primary) 0%, var(--nastir-color-accent) 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 4px 10px rgba(120, 134, 107, 0.3) !important;
}

.hero-bookings-calendar__summary {
  background: var(--nastir-color-dark) !important;
  border-radius: 12px !important;
  padding: 16px !important;
}

.hero-bookings-calendar__summary strong,
.hero-bookings-calendar__summary small {
  color: #ffffff !important;
}

.hero-bookings-calendar__submit {
  border-radius: 10px !important;
  padding: 12px 24px !important;
  background: #ffffff !important;
  color: var(--nastir-color-dark) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
  transition: all 0.3s ease !important;
}

.hero-bookings-calendar__submit:hover:not(:disabled),
.hero-bookings-calendar__submit:focus-visible:not(:disabled) {
  background: #f5f8f2 !important;
  color: var(--nastir-color-dark) !important;
  border-color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24) !important;
}

.hero-bookings-calendar__submit:disabled {
  background: #d8dfd2 !important;
  color: #7b8377 !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.nastir-error-page {
  background: var(--nastir-color-surface);
}

.nastir-error-hero {
  padding-bottom: 36px;
}

.nastir-error-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(120, 134, 107, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(26, 30, 66, 0.08);
}

.nastir-error-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  min-height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(0, 149, 213, 0.1);
  color: var(--nastir-color-primary);
  font-weight: 800;
  letter-spacing: 0;
}

.nastir-error-card h2 {
  margin: 0 0 12px;
  color: var(--nastir-color-dark);
}

.nastir-error-card p {
  margin: 0;
  color: var(--nastir-color-muted);
}

.nastir-error-card__actions {
  display: grid;
  gap: 12px;
}

.nastir-error-card__actions .nastir-link {
  justify-self: start;
}

.nastir-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.nastir-product-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 260px) auto auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(120, 134, 107, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(45, 53, 44, 0.04);
}

.nastir-product-filter label {
  display: grid;
  gap: 7px;
  color: var(--nastir-color-dark);
  font-weight: 700;
}

.nastir-product-filter label span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--nastir-color-muted);
}

.nastir-product-filter input,
.nastir-product-filter select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(120, 134, 107, 0.16);
  border-radius: 10px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--nastir-color-dark);
  font: inherit;
}

.nastir-product-card .nastir-card__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nastir-product-single {
  padding: clamp(56px, 8vw, 96px) 0;
}

.nastir-product-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.nastir-product-gallery-public {
  display: grid;
  gap: 16px;
}

.nastir-product-gallery-public__main {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(120, 134, 107, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(45, 53, 44, 0.06);
}

.nastir-product-gallery-public__main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.nastir-product-gallery-public__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(120px, 160px);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}

.nastir-product-gallery-public__track a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(120, 134, 107, 0.12);
  background: #ffffff;
  scroll-snap-align: start;
}

.nastir-product-gallery-public__track img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.nastir-product-single__content {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(120, 134, 107, 0.12);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(45, 53, 44, 0.06);
}

.nastir-product-single__content h1 {
  margin: 8px 0 20px;
  color: var(--nastir-color-dark);
}

.nastir-product-single__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.nastir-product-single__meta div {
  padding: 14px;
  border: 1px solid rgba(120, 134, 107, 0.12);
  border-radius: 14px;
  background: rgba(120, 134, 107, 0.04);
}

.nastir-product-single__meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--nastir-color-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nastir-product-single__meta strong {
  color: var(--nastir-color-dark);
  font-size: 18px;
}

.nastir-product-single__details {
  margin-bottom: 24px;
  color: var(--nastir-color-text);
  font-size: 17px;
}

.nastir-product-single__body {
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .nastir-error-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .nastir-product-filter,
  .nastir-product-single__layout,
  .nastir-product-single__meta {
    grid-template-columns: 1fr;
  }

  .nastir-product-filter {
    align-items: stretch;
  }

  .nastir-product-gallery-public__track {
    grid-auto-columns: minmax(104px, 42%);
  }
}
