/* ============================================================
   VARUÁ SPA — Global Styles
   Applies to all non-landing pages: products, cart, checkout, etc.
   Shares design tokens with landing & home pages.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --vr-teal:          #2BBCB3;
  --vr-teal-dark:     #229e96;
  --vr-teal-light:    rgba(43,188,179,0.10);
  --vr-salmon:        #F4846E;
  --vr-salmon-dark:   #e06a52;
  --vr-dark:          #1A1A1A;
  --vr-darker:        #111111;
  --vr-white:         #FFFFFF;
  --vr-gray-light:    #F7F7F7;
  --vr-text-dark:     #333333;
  --vr-text-mid:      #555555;
  --vr-text-light:    #666666;
  --vr-border:        #E8E8E8;
  --vr-font-display:  'Playfair Display', Georgia, serif;
  --vr-font-body:     'DM Sans', system-ui, -apple-system, sans-serif;
  --vr-container:     1280px;
  --vr-transition:    0.3s cubic-bezier(0.4,0,0.2,1);
  --vr-shadow-card:   0 4px 20px rgba(0,0,0,0.08);
  --vr-shadow-md:     0 8px 24px rgba(0,0,0,0.10);
  --vr-radius-sm:     8px;
  --vr-radius-md:     16px;
  --vr-radius-lg:     24px;
  --vr-radius-pill:   999px;
  --vr-header-h:      76px;
}

/* ─── BASE ───────────────────────────────────── */
body.vr-global {
  font-family: var(--vr-font-body) !important;
  color: var(--vr-text-dark);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background: #fff !important;
}
html { background: #fff !important; }
body.vr-global img { max-width: 100%; display: block; }

/* ─── CONTAINER ──────────────────────────────── */
.vr-container { max-width: var(--vr-container); margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ────────────────────────────────── */
.vr-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--vr-radius-pill); font-family: var(--vr-font-body); font-size: 0.92rem; font-weight: 600; border: none; cursor: pointer; transition: all var(--vr-transition); text-decoration: none; white-space: nowrap; }
.vr-btn i, .vr-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.vr-btn--salmon { background: var(--vr-salmon); color: #fff !important; }
.vr-btn--salmon:hover { background: var(--vr-salmon-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,132,110,0.35); }
.vr-btn--lg { padding: 16px 34px; font-size: 1rem; }

/* ─── HEADER (global) ────────────────────────── */
.vr-header--global {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--vr-header-h);
  background: var(--vr-dark) !important;
  transition: box-shadow var(--vr-transition);
}
.vr-header--global.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.vr-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--vr-header-h); }
.vr-logo__img { transition: opacity var(--vr-transition); }
.vr-nav { display: flex; gap: 32px; }
.vr-nav__link { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85) !important; transition: color var(--vr-transition); text-decoration: none; }
.vr-nav__link:hover { color: #fff !important; }
.vr-header__cta { display: flex; align-items: center; gap: 16px; }
.vr-header__cta .vr-btn { color: #fff !important; }

/* Hamburger */
.vr-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.vr-hamburger__line { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--vr-transition); }
.vr-hamburger.is-open .vr-hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.vr-hamburger.is-open .vr-hamburger__line:nth-child(2) { opacity: 0; }
.vr-hamburger.is-open .vr-hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.vr-mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--vr-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; opacity: 0; visibility: hidden; transition: all var(--vr-transition); }
.vr-mobile-menu.is-open { opacity: 1; visibility: visible; }
.vr-mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.vr-mobile-menu__link { font-size: 1.4rem; font-weight: 500; color: rgba(255,255,255,0.85); text-decoration: none; }
.vr-mobile-menu__link:hover { color: #fff; }

@media (max-width: 1024px) {
  .vr-nav { display: none; }
  .vr-hamburger { display: flex; }
  .vr-header__cta .vr-btn--salmon { display: none; }
}

/* ─── MAIN CONTENT AREA ─────────────────────── */
.vr-main {
  padding-top: var(--vr-header-h);
  min-height: 60vh;
}
/* Ensure Elementor page content has enough top padding and clean background */
.vr-main .page-content,
.vr-main .site-main {
  padding-top: 40px;
}
/* Override Elementor excessive padding on WC pages */
body.vr-global .elementor .e-con.e-parent {
  --padding-top: 24px !important;
  --padding-bottom: 24px !important;
}
/* Force clean white background on all global pages — covers Elementor decorations */
body.vr-global .vr-main {
  background: #fff !important;
  position: relative;
  z-index: 1;
}
/* Hide ALL decorative SVG wave images from Elementor on global pages */
body.vr-global .vr-main img[src*="Enmascarar"],
body.vr-global .vr-main img[src*="enmascarar"],
body.vr-global .vr-main img[src*="grupo-4"],
body.vr-global .vr-main img[src*="grupo-3"],
body.vr-global .vr-main img[src*="grupo-8"] {
  display: none !important;
}

/* Hide Elementor header/footer when our custom one is active */
body.vr-global .site-header,
body.vr-global .elementor-location-header,
body.vr-global header.site-header,
body.vr-global #site-header { display: none !important; }

body.vr-global .site-footer,
body.vr-global .elementor-location-footer,
body.vr-global footer.site-footer { display: none !important; }

/* Hide Elementor-built footer/header sections */
body.vr-global .elementor-1366,
body.vr-global [data-elementor-type="footer"],
body.vr-global [data-elementor-type="header"] { display: none !important; }

/* Hide decorative wave/Elementor sections — nuclear approach */
body.vr-global .elementor-element-55d2902,
body.vr-global .elementor-element-4460219 {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  clip: rect(0,0,0,0) !important;
}

/* Hide Joinchat / CreameWhatsApp (we have our own) */
body.vr-global .wa__btn_popup,
body.vr-global .joinchat,
body.vr-global .joinchat__button,
body.vr-global #joinchat,
body.vr-global div[class*="creame"],
body.vr-global div[class*="whatsapp-me"] { display: none !important; }

/* Admin bar offset */
body.vr-global.admin-bar .vr-header--global { top: 32px; }
@media screen and (max-width: 782px) {
  body.vr-global.admin-bar .vr-header--global { top: 46px; }
}

/* ─── FOOTER (global) ────────────────────────── */
.vr-footer { background: var(--vr-darker); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.vr-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.vr-footer__col-title { font-family: var(--vr-font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 20px; }
.vr-footer__brand-desc { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 20px; }
.vr-footer__social { display: flex; gap: 10px; }
.vr-footer__social-link { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85) !important; background: rgba(255,255,255,0.1) !important; transition: all var(--vr-transition); }
.vr-footer__social-link:hover { color: #fff !important; background: var(--vr-teal) !important; }
.vr-footer__social-link svg { display: block; }
.vr-footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; }
.vr-footer__contact-item i { width: 16px; height: 16px; color: var(--vr-teal); flex-shrink: 0; margin-top: 3px; }
.vr-footer__contact-item a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--vr-transition); }
.vr-footer__contact-item a:hover { color: #fff; }
.vr-footer__sede-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--vr-teal); text-decoration: none; transition: gap var(--vr-transition); }
.vr-footer__sede-link:hover { gap: 10px; }
.vr-footer__sede-link i { width: 14px; height: 14px; }
.vr-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.vr-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.vr-footer__legal { display: flex; gap: 20px; }
.vr-footer__legal a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--vr-transition); }
.vr-footer__legal a:hover { color: #fff; }

/* WhatsApp floating */
.vr-wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform var(--vr-transition); text-decoration: none; }
.vr-wa-float:hover { transform: scale(1.1); }

@media (max-width: 1024px) {
  .vr-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .vr-footer__grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   BOOKING CALENDAR — New Look & Feel
   ═══════════════════════════════════════════════ */

/* Product page wrapper */
body.vr-global .site-main,
body.vr-global .elementor-widget-container,
body.vr-global .e-con-inner {
  font-family: var(--vr-font-body) !important;
}

/* Product page heading */
body.vr-global .product .entry-title,
body.vr-global .elementor-heading-title {
  font-family: var(--vr-font-display) !important;
  color: var(--vr-teal) !important;
}

/* Calendar container */
.bcp-booking-container {
  max-width: 600px;
  margin: 0 auto 24px;
  padding: 32px;
  background: #fff;
  border-radius: var(--vr-radius-lg);
  box-shadow: var(--vr-shadow-card);
  border: 1px solid var(--vr-border);
}

/* FullCalendar overrides */
.fc {
  font-family: var(--vr-font-body) !important;
}
.fc .fc-toolbar-title {
  font-family: var(--vr-font-display) !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  color: var(--vr-text-dark) !important;
}
.fc .fc-button {
  background: var(--vr-teal) !important;
  border-color: var(--vr-teal) !important;
  border-radius: var(--vr-radius-pill) !important;
  font-family: var(--vr-font-body) !important;
  font-weight: 600 !important;
  padding: 6px 16px !important;
  transition: all var(--vr-transition) !important;
}
.fc .fc-button:hover {
  background: var(--vr-teal-dark) !important;
  border-color: var(--vr-teal-dark) !important;
}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background: var(--vr-teal-dark) !important;
}
.fc .fc-col-header-cell-cushion {
  font-weight: 600 !important;
  color: var(--vr-text-mid) !important;
  text-transform: lowercase !important;
  font-size: 0.85rem !important;
}
.fc .fc-daygrid-day-number {
  font-weight: 500 !important;
  color: var(--vr-text-dark) !important;
  font-size: 0.9rem !important;
}
.fc .fc-day-today {
  background: var(--vr-teal-light) !important;
}
.fc .fc-highlight {
  background: rgba(43,188,179,0.2) !important;
}
.fc td, .fc th {
  border-color: var(--vr-border) !important;
}
.fc .fc-daygrid-day:hover {
  background: var(--vr-gray-light) !important;
}

/* Legend */
.bcp-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 20px 0;
  font-size: 0.85rem;
  color: var(--vr-text-light);
}
.bcp-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bcp-legend-box {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}
.bcp-available {
  background: #fff;
  border: 1px solid var(--vr-border);
}
.bcp-occupied {
  background: var(--vr-text-mid);
}
.bcp-selected {
  background: var(--vr-teal);
}

/* Time selector */
.bcp-time-selector {
  margin-top: 24px;
  text-align: center;
}
.bcp-time-selector label {
  font-family: var(--vr-font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vr-text-dark);
  margin-bottom: 12px;
  display: block;
}
.bcp-time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.bcp-time-options button,
.bcp-time-options .bcp-time-btn {
  padding: 10px 20px;
  border: 2px solid var(--vr-border);
  border-radius: var(--vr-radius-pill);
  background: #fff;
  font-family: var(--vr-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vr-text-dark);
  cursor: pointer;
  transition: all var(--vr-transition);
}
.bcp-time-options button:hover,
.bcp-time-options .bcp-time-btn:hover {
  border-color: var(--vr-teal);
  color: var(--vr-teal);
}
.bcp-time-options button.selected,
.bcp-time-options .bcp-time-btn.selected {
  background: var(--vr-teal);
  border-color: var(--vr-teal);
  color: #fff;
}
.bcp-time-options button:disabled,
.bcp-time-options .bcp-time-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--vr-gray-light);
}

/* Action buttons */
.bcp-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 28px 0;
}
.bcp-button {
  padding: 14px 32px;
  border-radius: var(--vr-radius-pill);
  font-family: var(--vr-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--vr-transition);
}
.bcp-button.camcelar,
.bcp-button.cancelar {
  background: var(--vr-gray-light);
  color: var(--vr-text-mid);
  border: 2px solid var(--vr-border);
}
.bcp-button.camcelar:hover,
.bcp-button.cancelar:hover {
  background: #eee;
}
.bcp-button.primary {
  background: var(--vr-salmon);
  color: #fff;
}
.bcp-button.primary:hover {
  background: var(--vr-salmon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,132,110,0.35);
}
.bcp-button.primary:disabled {
  opacity: 0.5;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}


/* ═══════════════════════════════════════════════
   WOOCOMMERCE — Cart & Checkout
   ═══════════════════════════════════════════════ */

body.vr-global .woocommerce {
  font-family: var(--vr-font-body) !important;
}

/* Headings */
body.vr-global .woocommerce h1,
body.vr-global .woocommerce h2,
body.vr-global .woocommerce h3 {
  font-family: var(--vr-font-display) !important;
  color: var(--vr-text-dark) !important;
}

/* ── Elementor Cart Widget: force single-column stacked layout ── */
body.vr-global .elementor-element .e-cart__container,
body.vr-global .elementor .woocommerce .e-cart__container,
.e-cart__container {
  display: block !important;
  grid-template-columns: none !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}
body.vr-global .e-cart__column,
body.vr-global .e-cart__column-start,
body.vr-global .e-cart__column-end {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}
body.vr-global .e-cart__column-end {
  margin-top: 32px !important;
  max-width: 400px !important;
  margin-left: auto !important;
}

/* Cart table */
body.vr-global .woocommerce-cart-form,
body.vr-global .e-shop-table {
  width: 100% !important;
}
body.vr-global .woocommerce table.shop_table,
body.vr-global .e-shop-table .cart {
  width: 100% !important;
  border-radius: var(--vr-radius-md) !important;
  overflow: hidden;
  border: 1px solid var(--vr-border) !important;
  border-collapse: separate !important;
}
body.vr-global .woocommerce table.shop_table th,
body.vr-global .e-shop-table .cart th {
  background: var(--vr-gray-light) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--vr-text-mid) !important;
  padding: 14px 16px !important;
  white-space: nowrap !important;
}
body.vr-global .woocommerce table.shop_table td,
body.vr-global .e-shop-table .cart td {
  padding: 16px !important;
  font-size: 0.92rem !important;
  border-top: 1px solid var(--vr-border) !important;
  vertical-align: middle !important;
}

/* Remove column: tighter */
body.vr-global .e-shop-table .cart .product-remove {
  width: 40px !important;
  text-align: center !important;
}
body.vr-global .e-shop-table .cart .product-remove a {
  color: var(--vr-salmon) !important;
  font-size: 1.2rem !important;
}

/* Thumbnail column */
body.vr-global .e-shop-table .cart .product-thumbnail {
  width: 70px !important;
}
body.vr-global .e-shop-table .cart .product-thumbnail img {
  width: 60px !important;
  height: 60px !important;
  object-fit: cover !important;
  border-radius: var(--vr-radius-sm) !important;
}

/* Product name */
body.vr-global .e-shop-table .cart .product-name a {
  color: var(--vr-text-dark) !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}
body.vr-global .e-shop-table .cart .product-name a:hover {
  color: var(--vr-teal) !important;
}
body.vr-global .e-shop-table .cart .product-name dt {
  font-weight: 600 !important;
  color: var(--vr-text-mid) !important;
  font-size: 0.82rem !important;
}
body.vr-global .e-shop-table .cart .product-name dd {
  color: var(--vr-teal) !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  margin-left: 0 !important;
}

/* Quantity input */
body.vr-global .e-shop-table .cart .quantity input[type="number"] {
  width: 60px !important;
  border: 2px solid var(--vr-border) !important;
  border-radius: var(--vr-radius-sm) !important;
  padding: 8px !important;
  text-align: center !important;
  font-family: var(--vr-font-body) !important;
  font-weight: 600 !important;
}

/* Totals box */
body.vr-global .cart_totals,
body.vr-global .e-cart__totals {
  width: 100% !important;
  max-width: 400px !important;
  margin-left: auto !important;
}
body.vr-global .cart_totals table {
  border-radius: var(--vr-radius-md) !important;
  border: 1px solid var(--vr-border) !important;
  border-collapse: separate !important;
  overflow: hidden;
}
body.vr-global .cart_totals th {
  background: var(--vr-gray-light) !important;
  padding: 14px 18px !important;
  font-weight: 600 !important;
}
body.vr-global .cart_totals td {
  padding: 14px 18px !important;
}
body.vr-global .cart_totals h2 {
  font-size: 1.3rem !important;
  margin-bottom: 16px !important;
}

/* Update cart button */
body.vr-global .e-shop-table .cart + .actions,
body.vr-global .woocommerce-cart-form .actions {
  padding: 16px 0 !important;
}

/* Buttons */
body.vr-global .woocommerce .button,
body.vr-global .woocommerce button.button,
body.vr-global .woocommerce a.button,
body.vr-global .woocommerce input.button {
  background: var(--vr-teal) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--vr-radius-pill) !important;
  padding: 14px 28px !important;
  font-family: var(--vr-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.92rem !important;
  cursor: pointer !important;
  transition: all var(--vr-transition) !important;
  text-decoration: none !important;
}
body.vr-global .woocommerce .button:hover,
body.vr-global .woocommerce button.button:hover,
body.vr-global .woocommerce a.button:hover {
  background: var(--vr-teal-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(43,188,179,0.3) !important;
}

body.vr-global .woocommerce .button.alt,
body.vr-global .woocommerce button.button.alt,
body.vr-global .woocommerce .checkout-button,
body.vr-global .woocommerce #place_order {
  background: var(--vr-salmon) !important;
}
body.vr-global .woocommerce .button.alt:hover,
body.vr-global .woocommerce button.button.alt:hover,
body.vr-global .woocommerce .checkout-button:hover,
body.vr-global .woocommerce #place_order:hover {
  background: var(--vr-salmon-dark) !important;
  box-shadow: 0 6px 20px rgba(244,132,110,0.3) !important;
}

/* ── Mobile cart ── */
@media (max-width: 768px) {
  body.vr-global .e-shop-table .cart .product-thumbnail {
    display: none !important;
  }
  body.vr-global .e-shop-table .cart th.product-thumbnail {
    display: none !important;
  }
  body.vr-global .cart_totals,
  body.vr-global .e-cart__totals {
    max-width: 100% !important;
  }
}

/* Elementor WC cart widget — fix empty state visibility */
body.vr-global .e-cart-empty-template-active .e-cart-empty,
body.vr-global .e-cart-empty-template-active .e-cart-empty * {
  visibility: visible !important;
  width: auto !important;
  height: auto !important;
  position: static !important;
  clip: auto !important;
  overflow: visible !important;
}
body.vr-global .e-cart-empty-template-active .e-cart-empty h2,
body.vr-global .e-cart-empty-template-active .wc-empty-cart-message {
  color: var(--vr-text-dark) !important;
  font-family: var(--vr-font-display) !important;
  font-size: 1.8rem !important;
  text-align: center !important;
  padding: 60px 24px 20px !important;
}
body.vr-global .e-cart-empty-template-active .return-to-shop {
  text-align: center !important;
  padding-bottom: 60px !important;
}
/* Hide the empty template wrapper that tries to show footer as cart empty */
body.vr-global .e-cart-empty-template-active .e-cart-empty-template {
  display: none !important;
}

/* Cart empty message */
body.vr-global .woocommerce .cart-empty {
  font-family: var(--vr-font-display) !important;
  font-size: 1.8rem !important;
  color: var(--vr-text-dark) !important;
  text-align: center !important;
  padding: 60px 0 20px !important;
}
body.vr-global .woocommerce .return-to-shop {
  text-align: center !important;
  padding-bottom: 60px !important;
}

/* ── Checkout layout ── */
body.vr-global .e-checkout__container {
  max-width: 1100px !important;
  margin: 0 auto !important;
  gap: 40px !important;
}

/* Checkout columns — billing left, order right */
body.vr-global .e-checkout__column {
  background: #fff !important;
  border-radius: var(--vr-radius-lg) !important;
  border: 1px solid var(--vr-border) !important;
  padding: 32px !important;
  box-shadow: var(--vr-shadow-card) !important;
}

/* Section titles */
body.vr-global .woocommerce-checkout h3,
body.vr-global .woocommerce-checkout .e-checkout-secondary-title {
  font-family: var(--vr-font-display) !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  color: var(--vr-text-dark) !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 2px solid var(--vr-gray-light) !important;
}

/* Checkout form fields */
body.vr-global .woocommerce form .form-row input.input-text,
body.vr-global .woocommerce form .form-row textarea,
body.vr-global .woocommerce form .form-row select,
body.vr-global .woocommerce-checkout input.input-text,
body.vr-global .woocommerce-checkout textarea,
body.vr-global .woocommerce-checkout select {
  border: 2px solid var(--vr-border) !important;
  border-radius: var(--vr-radius-sm) !important;
  padding: 12px 16px !important;
  font-family: var(--vr-font-body) !important;
  font-size: 0.92rem !important;
  transition: border-color var(--vr-transition) !important;
  background: #fff !important;
  width: 100% !important;
}
body.vr-global .woocommerce form .form-row input.input-text:focus,
body.vr-global .woocommerce form .form-row textarea:focus,
body.vr-global .woocommerce form .form-row select:focus {
  border-color: var(--vr-teal) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--vr-teal-light) !important;
}
body.vr-global .woocommerce form .form-row label {
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  color: var(--vr-text-dark) !important;
  margin-bottom: 6px !important;
}
body.vr-global .woocommerce form .form-row {
  margin-bottom: 16px !important;
}

/* Order review table */
body.vr-global .woocommerce-checkout-review-order-table {
  border-radius: var(--vr-radius-md) !important;
  border: 1px solid var(--vr-border) !important;
  border-collapse: separate !important;
  overflow: hidden !important;
  width: 100% !important;
}
body.vr-global .woocommerce-checkout-review-order-table th {
  background: var(--vr-gray-light) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--vr-text-mid) !important;
  padding: 14px 18px !important;
}
body.vr-global .woocommerce-checkout-review-order-table td {
  padding: 14px 18px !important;
  font-size: 0.92rem !important;
  border-top: 1px solid var(--vr-border) !important;
}
body.vr-global .woocommerce-checkout-review-order-table tfoot th,
body.vr-global .woocommerce-checkout-review-order-table tfoot td {
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* Payment methods */
body.vr-global #payment,
body.vr-global .woocommerce-checkout-payment {
  background: var(--vr-gray-light) !important;
  border-radius: var(--vr-radius-md) !important;
  padding: 24px !important;
  margin-top: 24px !important;
}
body.vr-global #payment .payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
}
body.vr-global #payment .payment_methods li {
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--vr-border) !important;
}
body.vr-global #payment .payment_methods li:last-child {
  border-bottom: none !important;
}
body.vr-global #payment .payment_methods li label {
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
}
body.vr-global #payment .payment_box {
  background: #fff !important;
  border-radius: var(--vr-radius-sm) !important;
  padding: 16px !important;
  margin-top: 8px !important;
  font-size: 0.85rem !important;
  color: var(--vr-text-light) !important;
}
body.vr-global #payment .payment_box::before {
  display: none !important;
}

/* Place order button */
body.vr-global #place_order {
  width: 100% !important;
  padding: 16px 32px !important;
  font-size: 1.05rem !important;
  margin-top: 8px !important;
}

/* ── Order-pay page (PayU redirect) ── */
body.woocommerce-order-pay .woocommerce {
  max-width: 640px !important;
  margin: 0 auto !important;
  padding: 40px 24px 60px !important;
}

/* Order summary card */
body.woocommerce-order-pay .order_details {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  padding: 0 !important;
  background: #fff !important;
  border-radius: var(--vr-radius-lg) !important;
  border: 1px solid var(--vr-border) !important;
  box-shadow: var(--vr-shadow-card) !important;
  margin-bottom: 32px !important;
  list-style: none !important;
  overflow: hidden !important;
}
body.woocommerce-order-pay .order_details li {
  flex: 1 1 auto !important;
  padding: 20px 24px !important;
  border-right: 1px solid var(--vr-border) !important;
  border-bottom: none !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--vr-text-dark) !important;
  text-align: center !important;
}
body.woocommerce-order-pay .order_details li:last-child {
  border-right: none !important;
}
/* Labels (the text before <strong>) */
body.woocommerce-order-pay .order_details li {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: var(--vr-text-light) !important;
}
/* Values */
body.woocommerce-order-pay .order_details li strong {
  display: block !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--vr-text-dark) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-top: 6px !important;
}
body.woocommerce-order-pay .order_details li.total strong {
  color: var(--vr-teal) !important;
  font-size: 1.2rem !important;
}

/* Message text */
body.woocommerce-order-pay .woocommerce > p {
  text-align: center !important;
  font-size: 1rem !important;
  color: var(--vr-text-mid) !important;
  margin-bottom: 28px !important;
  line-height: 1.6 !important;
}

/* PayU form and Pagar button */
body.woocommerce-order-pay #payu_latam_form,
body.woocommerce-order-pay form[id*="payu"] {
  text-align: center !important;
}
body.woocommerce-order-pay #submit_payu_latam,
body.woocommerce-order-pay input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 400px !important;
  padding: 18px 40px !important;
  background: var(--vr-salmon) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--vr-radius-pill) !important;
  font-family: var(--vr-font-body) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all var(--vr-transition) !important;
  letter-spacing: 0.02em !important;
}
body.woocommerce-order-pay #submit_payu_latam:hover,
body.woocommerce-order-pay input[type="submit"]:hover {
  background: var(--vr-salmon-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(244,132,110,0.35) !important;
}

/* Payment box on order-pay */
body.woocommerce-order-pay #payment {
  background: #fff !important;
  border: 1px solid var(--vr-border) !important;
  border-radius: var(--vr-radius-lg) !important;
  padding: 28px !important;
  box-shadow: var(--vr-shadow-card) !important;
}

@media (max-width: 600px) {
  body.woocommerce-order-pay .order_details {
    flex-direction: column !important;
  }
  body.woocommerce-order-pay .order_details li {
    border-right: none !important;
    border-bottom: 1px solid var(--vr-border) !important;
  }
  body.woocommerce-order-pay .order_details li:last-child {
    border-bottom: none !important;
  }
}

/* Notices */
body.vr-global .woocommerce .woocommerce-message,
body.vr-global .woocommerce .woocommerce-info {
  border-top-color: var(--vr-teal) !important;
  background: var(--vr-teal-light) !important;
  color: var(--vr-text-dark) !important;
  border-radius: var(--vr-radius-sm) !important;
  font-size: 0.9rem !important;
  padding: 12px 18px !important;
}
body.vr-global .woocommerce .woocommerce-message::before,
body.vr-global .woocommerce .woocommerce-info::before {
  color: var(--vr-teal) !important;
}
body.vr-global .woocommerce .woocommerce-error {
  border-top-color: var(--vr-salmon) !important;
  border-radius: var(--vr-radius-sm) !important;
}

/* Price */
body.vr-global .woocommerce .amount,
body.vr-global .woocommerce .price {
  color: var(--vr-teal) !important;
  font-weight: 700 !important;
}

/* ── Checkout responsive ── */
@media (max-width: 768px) {
  body.vr-global .e-checkout__container {
    display: block !important;
  }
  body.vr-global .e-checkout__column {
    margin-bottom: 24px !important;
    padding: 20px !important;
  }
}


/* ═══════════════════════════════════════════════
   SWEETALERT2 — Booking Confirmation Modal
   ═══════════════════════════════════════════════ */

.swal2-popup {
  font-family: var(--vr-font-body) !important;
  border-radius: var(--vr-radius-lg) !important;
}
.swal2-title {
  font-family: var(--vr-font-display) !important;
  color: var(--vr-text-dark) !important;
}
.swal2-confirm {
  background: var(--vr-salmon) !important;
  border-radius: var(--vr-radius-pill) !important;
  font-family: var(--vr-font-body) !important;
  font-weight: 600 !important;
}
.swal2-cancel {
  border-radius: var(--vr-radius-pill) !important;
  font-family: var(--vr-font-body) !important;
  font-weight: 600 !important;
}
