/* =========================================================================
   Page-specific styles
   ========================================================================= */

/* ---------- Booking widget inner ---------- */
.gv-booking-service-head { margin-bottom: 16px; }
.gv-booking-days {
  display: grid;
  gap: 12px;
}
.gv-booking-day {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--gv-cream);
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius);
}
.gv-booking-day-head {
  flex: 0 0 100px;
  display: flex; flex-direction: column;
}
.gv-booking-day-head strong { font-family: var(--gv-font-display); font-size: 1.1rem; }
.gv-booking-day-head span { font-size: .8rem; color: var(--gv-text-muted); text-transform: capitalize; }
.gv-booking-slot-list {
  display: flex; gap: 8px; flex-wrap: wrap; flex: 1;
}
.gv-booking-slot {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--gv-radius-full);
  background: white;
  border: 1.5px solid var(--gv-line);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gv-ink);
  transition: all var(--gv-dur) var(--gv-ease);
}
.gv-booking-slot:hover { background: var(--gv-orange); color: white; border-color: var(--gv-orange); }
.gv-booking-slot-empty { font-size: .85rem; color: var(--gv-text-muted); padding: 8px 0; }

@media (max-width: 520px) {
  .gv-booking-day { flex-direction: column; align-items: flex-start; }
}

/* ---------- Tienda ---------- */
.gv-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 880px) {
  .gv-shop-layout { grid-template-columns: 1fr; }
}
.gv-shop-side {
  position: sticky; top: 88px;
  background: white;
  border-radius: var(--gv-radius);
  border: 1px solid var(--gv-line);
  padding: 20px;
}
.gv-shop-side h5 {
  font-family: var(--gv-font-body);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gv-text-muted);
  margin: 14px 0 8px;
}
.gv-shop-side ul { display: flex; flex-direction: column; gap: 4px; }
.gv-shop-side a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--gv-radius-sm);
  font-size: .92rem;
  color: var(--gv-ink-2);
}
.gv-shop-side a:hover { background: var(--gv-cream-2); }
.gv-shop-side a.is-active { background: var(--gv-ink); color: var(--gv-cream); }

.gv-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.gv-shop-toolbar .gv-search-input { max-width: 320px; }

/* ---------- Product detail ---------- */
.gv-product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 880px) {
  .gv-product-detail { grid-template-columns: 1fr; gap: 28px; }
}
.gv-product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
}
.gv-product-gallery-main {
  aspect-ratio: 4/5;
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  background: var(--gv-cream-2);
}
.gv-product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gv-product-gallery-thumbs {
  display: flex; flex-direction: column; gap: 8px;
}
.gv-product-gallery-thumbs button {
  width: 72px; height: 72px;
  border-radius: var(--gv-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color var(--gv-dur) var(--gv-ease);
}
.gv-product-gallery-thumbs button.is-active { border-color: var(--gv-orange); }
.gv-product-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.gv-product-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.gv-product-info .gv-product-detail-brand {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gv-text-muted); font-weight: 600; margin-bottom: 6px;
}
.gv-product-detail-price-row { display: flex; align-items: baseline; gap: 14px; margin: 18px 0; }
.gv-product-detail-price { font-family: var(--gv-font-display); font-size: 2.4rem; font-weight: 600; }
.gv-product-detail-price-old { font-size: 1rem; text-decoration: line-through; color: var(--gv-text-muted); }
.gv-product-detail-cash {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gv-mint-soft); color: var(--gv-mint);
  padding: 4px 10px; border-radius: var(--gv-radius-full);
  font-size: .8rem; font-weight: 600;
}

.gv-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.gv-qty {
  display: inline-flex; align-items: center;
  background: white; border: 1.5px solid var(--gv-line);
  border-radius: var(--gv-radius-full);
  overflow: hidden;
}
.gv-qty button { width: 38px; height: 38px; font-size: 1.2rem; font-weight: 700; color: var(--gv-ink); }
.gv-qty input {
  width: 56px; text-align: center; border: none; outline: none;
  font-weight: 700; background: transparent; font-size: 1rem;
}

/* ---------- Reservar (booking page) ---------- */
.gv-booking-page {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .gv-booking-page { grid-template-columns: 1fr; }
}
.gv-booking-step {
  background: white;
  border-radius: var(--gv-radius-lg);
  border: 1px solid var(--gv-line);
  padding: 24px;
}
.gv-step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--gv-orange);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 10px;
}

.gv-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.gv-time-btn {
  padding: 12px;
  background: white;
  border: 1.5px solid var(--gv-line);
  border-radius: var(--gv-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--gv-dur) var(--gv-ease);
}
.gv-time-btn:hover { border-color: var(--gv-ink); }
.gv-time-btn.is-active { background: var(--gv-ink); color: var(--gv-cream); border-color: var(--gv-ink); }
.gv-time-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ---------- Pet card (ficha) ---------- */
.gv-pet-card {
  background: white;
  border-radius: var(--gv-radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  box-shadow: var(--gv-shadow);
}
.gv-pet-photo {
  background: var(--gv-orange-soft);
  display: grid; place-items: center;
  aspect-ratio: 1;
}
.gv-pet-photo img { width: 100%; height: 100%; object-fit: cover; }
.gv-pet-body { padding: 28px; }
.gv-pet-name { font-family: var(--gv-font-display); font-size: 2rem; }
.gv-pet-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 16px;
}

.gv-vaccine-list { display: flex; flex-direction: column; gap: 10px; }
.gv-vaccine-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--gv-cream);
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius);
  gap: 12px;
}
.gv-vaccine-item.is-due { background: #FFF6E5; border-color: #FFD685; }
.gv-vaccine-item.is-overdue { background: #FCEFEE; border-color: #F5C7C3; }
.gv-vaccine-item strong { font-family: var(--gv-font-display); font-size: 1.05rem; }
.gv-vaccine-item span { font-size: .85rem; color: var(--gv-text-muted); }

/* ---------- Auth pages ---------- */
.gv-auth-shell {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}
.gv-auth-card {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: var(--gv-radius-xl);
  padding: 36px;
  box-shadow: var(--gv-shadow);
  border: 1px solid var(--gv-line);
}
.gv-auth-card h1 { font-size: 1.8rem; margin-bottom: 8px; }
.gv-auth-card p { color: var(--gv-text-muted); margin-bottom: 24px; }

/* ---------- Generic page hero (slim) ---------- */
.gv-page-hero {
  background: var(--gv-ink);
  color: var(--gv-cream);
  padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.gv-page-hero h1 { color: var(--gv-cream); max-width: 22ch; font-size: clamp(2rem, 4vw + 1rem, 3.4rem); }
.gv-page-hero h1 em { color: var(--gv-orange-bright); font-style: italic; font-weight: 400; }
.gv-page-hero p { color: rgba(255,247,238,.78); max-width: 56ch; margin-top: 14px; font-size: 1.05rem; }
.gv-page-hero .gv-eyebrow.is-light { color: var(--gv-orange-bright); }
.gv-page-hero.is-cream { background: var(--gv-cream-2); color: var(--gv-ink); }
.gv-page-hero.is-cream h1 { color: var(--gv-ink); }
.gv-page-hero.is-cream p { color: var(--gv-text-muted); }
.gv-page-hero.is-mint { background: linear-gradient(135deg, #4A9B8E 0%, #357369 100%); color: white; }
.gv-page-hero.is-mint h1, .gv-page-hero.is-mint p { color: white; }
.gv-page-hero.is-mint h1 em { color: #FFE7D4; }
.gv-page-hero.is-orange { background: linear-gradient(135deg, var(--gv-orange) 0%, var(--gv-orange-deep) 100%); color: white; }
.gv-page-hero.is-orange h1, .gv-page-hero.is-orange p { color: white; }
.gv-page-hero.is-orange h1 em { color: var(--gv-ink); }

.gv-page-hero-art {
  position: absolute; right: clamp(20px, 5vw, 80px); bottom: -10px;
  width: clamp(180px, 22vw, 320px); pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(20,17,15,.25));
}
.gv-page-hero-art img { width: 100%; height: auto; }
@media (max-width: 800px) {
  .gv-page-hero-art { display: none; }
}

/* ---------- Breadcrumb ---------- */
.gv-breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: .85rem; color: var(--gv-text-muted);
  margin-bottom: 14px; flex-wrap: wrap;
}
.gv-breadcrumb a { color: var(--gv-text-muted); }
.gv-breadcrumb a:hover { color: var(--gv-orange-deep); }
.gv-breadcrumb-sep { opacity: .6; }

/* ---------- Tienda extras ---------- */
.gv-shop-side .gv-shop-search {
  display: block; width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gv-line);
  border-radius: var(--gv-radius-sm);
  font-size: .9rem; outline: none;
  margin-bottom: 14px;
  transition: border-color var(--gv-dur) var(--gv-ease);
}
.gv-shop-side .gv-shop-search:focus { border-color: var(--gv-orange); }

.gv-shop-empty {
  grid-column: 1/-1;
  padding: 60px 20px; text-align: center;
  color: var(--gv-text-muted);
}

.gv-cash-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gv-mint-soft); color: var(--gv-mint);
  padding: 4px 9px; border-radius: var(--gv-radius-full);
  font-size: .72rem; font-weight: 600;
  margin-top: 4px;
}

/* ---------- Carrito ---------- */
.gv-cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 880px) { .gv-cart-layout { grid-template-columns: 1fr; } }

.gv-cart-list { display: flex; flex-direction: column; gap: 14px; }
.gv-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  background: white;
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius);
  padding: 14px;
  align-items: center;
}
.gv-cart-item-img {
  width: 90px; height: 90px;
  border-radius: var(--gv-radius-sm);
  overflow: hidden;
  background: var(--gv-cream-2);
}
.gv-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.gv-cart-item-body strong { font-family: var(--gv-font-display); font-size: 1.05rem; display: block; }
.gv-cart-item-body .gv-cart-item-brand { font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gv-text-muted); }
.gv-cart-item-body .gv-cart-item-controls { display: flex; align-items: center; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.gv-cart-item-remove { color: var(--gv-error); font-size: .85rem; font-weight: 600; background: none; border: none; cursor: pointer; padding: 0; }
.gv-cart-item-remove:hover { text-decoration: underline; }
.gv-cart-item-total { font-family: var(--gv-font-display); font-size: 1.2rem; font-weight: 600; text-align: right; }

.gv-cart-summary {
  position: sticky; top: 88px;
  background: white;
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius-lg);
  padding: 24px;
}
.gv-cart-summary h3 { font-family: var(--gv-font-display); font-size: 1.3rem; margin-bottom: 16px; }
.gv-cart-summary .gv-cart-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--gv-ink-2); }
.gv-cart-summary .gv-cart-row.is-total { border-top: 1px solid var(--gv-line); padding-top: 14px; margin-top: 8px; font-family: var(--gv-font-display); font-size: 1.4rem; font-weight: 600; color: var(--gv-ink); }
.gv-cart-summary .gv-cart-row.is-cash { color: var(--gv-mint); font-weight: 600; }

@media (max-width: 560px) {
  .gv-cart-item { grid-template-columns: 70px 1fr; }
  .gv-cart-item-total { grid-column: 2; text-align: left; }
  .gv-cart-item-img { width: 70px; height: 70px; }
}

/* ---------- Checkout ---------- */
.gv-checkout-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 880px) { .gv-checkout-layout { grid-template-columns: 1fr; } }

.gv-payment-method-row {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-top: 6px;
}
.gv-payment-method-row label {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px; background: white;
  border: 1.5px solid var(--gv-line);
  border-radius: var(--gv-radius);
  cursor: pointer; text-align: center;
  font-size: .88rem; font-weight: 600;
  transition: border-color var(--gv-dur) var(--gv-ease), background var(--gv-dur) var(--gv-ease);
}
.gv-payment-method-row label:hover { border-color: var(--gv-ink); }
.gv-payment-method-row input { display: none; }
.gv-payment-method-row input:checked + .gv-payment-method-card { border-color: var(--gv-orange); background: var(--gv-orange-soft); }
.gv-payment-method-card { display: contents; }

/* ---------- Servicios listado ---------- */
.gv-services-group { margin-bottom: clamp(40px, 5vw, 64px); }
.gv-services-group-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; gap: 14px; flex-wrap: wrap; }
.gv-services-group-head h3 { font-family: var(--gv-font-display); font-size: 1.6rem; }
.gv-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

/* ---------- Service detail strip (peluqueria/veterinaria) ---------- */
.gv-service-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.gv-service-strip-art {
  aspect-ratio: 4/3;
  border-radius: var(--gv-radius-xl);
  overflow: hidden;
  background: var(--gv-cream-2);
}
.gv-service-strip-art img { width: 100%; height: 100%; object-fit: cover; }
.gv-service-strip.is-reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .gv-service-strip { grid-template-columns: 1fr; }
  .gv-service-strip.is-reverse > :first-child { order: 0; }
}

.gv-size-table {
  width: 100%; border-collapse: collapse;
  margin-top: 16px;
  background: white;
  border-radius: var(--gv-radius);
  overflow: hidden;
  border: 1px solid var(--gv-line);
}
.gv-size-table th, .gv-size-table td {
  padding: 12px 14px; text-align: left; font-size: .92rem;
  border-bottom: 1px solid var(--gv-line);
}
.gv-size-table th { background: var(--gv-cream-2); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gv-ink-2); }
.gv-size-table tr:last-child td { border-bottom: none; }
.gv-size-table td:last-child { font-family: var(--gv-font-display); font-weight: 600; color: var(--gv-orange-deep); text-align: right; }

/* ---------- Galería con filtros + lightbox ---------- */
.gv-gallery-filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.gv-lightbox {
  position: fixed; inset: 0;
  background: rgba(20,17,15,.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: var(--gv-z-modal);
  padding: 30px;
}
.gv-lightbox.is-open { display: flex; }
.gv-lightbox img {
  max-width: 100%; max-height: 90vh;
  border-radius: var(--gv-radius-lg);
  box-shadow: var(--gv-shadow-lg);
}
.gv-lightbox-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,247,238,.12);
  color: white;
  display: grid; place-items: center;
  border: 1px solid rgba(255,247,238,.25);
  cursor: pointer;
}
.gv-lightbox-close:hover { background: rgba(255,247,238,.25); }

/* ---------- Nosotros ---------- */
.gv-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.gv-team-card {
  background: white;
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--gv-line);
  transition: transform var(--gv-dur) var(--gv-ease);
}
.gv-team-card:hover { transform: translateY(-3px); box-shadow: var(--gv-shadow); }
.gv-team-photo {
  aspect-ratio: 1/1;
  background: var(--gv-orange-soft);
  background-size: cover; background-position: center;
}
.gv-team-body { padding: 18px; }
.gv-team-body h4 { font-family: var(--gv-font-display); font-size: 1.15rem; margin-bottom: 4px; }
.gv-team-body span { color: var(--gv-orange-deep); font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.gv-team-body p { color: var(--gv-text-muted); font-size: .9rem; margin-top: 8px; }

.gv-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gv-value-card {
  background: white;
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius-lg);
  padding: 24px;
}
.gv-value-card .gv-value-icon {
  width: 48px; height: 48px;
  border-radius: var(--gv-radius);
  background: var(--gv-orange-soft);
  display: grid; place-items: center;
  margin-bottom: 14px;
  color: var(--gv-orange-deep);
}
.gv-value-card .gv-value-icon svg { width: 26px; height: 26px; }
.gv-value-card h4 { font-family: var(--gv-font-display); font-size: 1.15rem; margin-bottom: 6px; }
.gv-value-card p { color: var(--gv-text-muted); font-size: .92rem; }

.gv-map-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--gv-radius-lg);
  border: 1px solid var(--gv-line);
  overflow: hidden;
}
.gv-map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contacto ---------- */
.gv-contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
@media (max-width: 880px) { .gv-contact-layout { grid-template-columns: 1fr; } }
.gv-contact-info ul { display: flex; flex-direction: column; gap: 14px; }
.gv-contact-info li {
  display: flex; gap: 14px;
  background: white;
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius);
  padding: 14px 16px;
}
.gv-contact-info li .gv-contact-icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: var(--gv-radius);
  background: var(--gv-orange-soft);
  display: grid; place-items: center;
  color: var(--gv-orange-deep);
}
.gv-contact-info li strong { display: block; font-family: var(--gv-font-display); font-size: 1.05rem; margin-bottom: 2px; }
.gv-contact-info li span, .gv-contact-info li a { color: var(--gv-text-muted); font-size: .92rem; display: block; }
.gv-contact-info li a:hover { color: var(--gv-orange-deep); }

/* ---------- Cursos ---------- */
.gv-courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.gv-course-enroll-form {
  display: grid; gap: 12px;
  margin-top: 16px;
  padding: 18px;
  background: var(--gv-cream-2);
  border-radius: var(--gv-radius);
}

/* ---------- Reservar (calendar) ---------- */
.gv-calendar {
  background: var(--gv-cream-2);
  border-radius: var(--gv-radius-lg);
  padding: 16px;
}
.gv-calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.gv-calendar-head h4 { font-family: var(--gv-font-display); font-size: 1.15rem; text-transform: capitalize; }
.gv-calendar-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  border: 1.5px solid var(--gv-line);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--gv-ink);
}
.gv-calendar-arrow:hover { border-color: var(--gv-ink); }
.gv-calendar-arrow svg { width: 16px; height: 16px; }
.gv-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.gv-calendar-weekday {
  text-align: center;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gv-text-muted);
  padding: 8px 0;
}
.gv-calendar-day {
  aspect-ratio: 1;
  display: grid; place-items: center;
  background: white;
  border: 1.5px solid transparent;
  border-radius: var(--gv-radius-sm);
  font-weight: 600;
  color: var(--gv-ink-2);
  cursor: pointer;
  transition: all var(--gv-dur) var(--gv-ease);
  font-size: .92rem;
}
.gv-calendar-day:hover:not(:disabled):not(.is-empty) { border-color: var(--gv-ink); }
.gv-calendar-day.is-active { background: var(--gv-ink); color: var(--gv-cream); border-color: var(--gv-ink); }
.gv-calendar-day.is-today { color: var(--gv-orange-deep); }
.gv-calendar-day:disabled, .gv-calendar-day.is-empty {
  background: transparent; color: transparent; cursor: default; pointer-events: none;
}
.gv-calendar-day.is-past { opacity: .35; cursor: not-allowed; }

.gv-stepper {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.gv-stepper-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600;
  color: var(--gv-text-muted);
}
.gv-stepper-item .gv-stepper-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gv-cream-2);
  border: 1.5px solid var(--gv-line);
  display: grid; place-items: center;
  font-size: .78rem;
}
.gv-stepper-item.is-active { color: var(--gv-ink); }
.gv-stepper-item.is-active .gv-stepper-circle { background: var(--gv-orange); border-color: var(--gv-orange); color: white; }
.gv-stepper-item.is-done .gv-stepper-circle { background: var(--gv-success); border-color: var(--gv-success); color: white; }
.gv-stepper-sep {
  width: 28px; height: 1.5px; background: var(--gv-line);
}

/* ---------- Mi cuenta / mi mascota ---------- */
.gv-account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 820px) { .gv-account-layout { grid-template-columns: 1fr; } }
.gv-account-side {
  background: white;
  border-radius: var(--gv-radius-lg);
  border: 1px solid var(--gv-line);
  padding: 20px;
  position: sticky; top: 88px;
}
.gv-account-side h5 {
  font-family: var(--gv-font-body);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gv-text-muted);
  margin-bottom: 14px;
}
.gv-account-side a {
  display: block; padding: 9px 12px;
  border-radius: var(--gv-radius-sm);
  font-size: .94rem; color: var(--gv-ink-2);
}
.gv-account-side a.is-active, .gv-account-side a:hover { background: var(--gv-cream-2); color: var(--gv-ink); }

.gv-account-section {
  background: white;
  border-radius: var(--gv-radius-lg);
  border: 1px solid var(--gv-line);
  padding: 28px;
  margin-bottom: 22px;
}
.gv-account-section h3 { font-family: var(--gv-font-display); font-size: 1.3rem; margin-bottom: 16px; }

.gv-pet-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.gv-pet-mini {
  display: flex; flex-direction: column;
  background: var(--gv-cream-2);
  border-radius: var(--gv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gv-line);
  transition: all var(--gv-dur) var(--gv-ease);
}
.gv-pet-mini:hover { transform: translateY(-3px); box-shadow: var(--gv-shadow); }
.gv-pet-mini-photo {
  aspect-ratio: 4/3;
  background: var(--gv-orange-soft);
  background-size: cover; background-position: center;
}
.gv-pet-mini-body { padding: 14px 16px; }
.gv-pet-mini-body strong { font-family: var(--gv-font-display); font-size: 1.1rem; display: block; }
.gv-pet-mini-body span { font-size: .82rem; color: var(--gv-text-muted); }

.gv-order-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--gv-cream);
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius);
  padding: 14px 18px;
  flex-wrap: wrap;
}
.gv-order-card strong { font-family: var(--gv-font-display); font-size: 1.05rem; }
.gv-order-card .gv-order-status {
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 9px; border-radius: var(--gv-radius-full);
  background: var(--gv-orange-soft); color: var(--gv-orange-deep);
}
.gv-order-card .gv-order-status.is-paid { background: var(--gv-mint-soft); color: var(--gv-mint); }
.gv-order-card .gv-order-status.is-cancelled { background: #FCEFEE; color: var(--gv-error); }
.gv-order-card .gv-order-total { margin-left: auto; font-family: var(--gv-font-display); font-size: 1.2rem; font-weight: 600; }

.gv-appt-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--gv-cream);
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius);
  padding: 14px 18px;
  flex-wrap: wrap;
}
.gv-appt-card .gv-appt-date {
  flex: 0 0 auto;
  background: var(--gv-orange);
  color: white;
  padding: 8px 12px;
  border-radius: var(--gv-radius-sm);
  text-align: center;
  min-width: 64px;
  font-weight: 700;
  line-height: 1.1;
}
.gv-appt-card .gv-appt-date small { display: block; font-size: .7rem; opacity: .9; letter-spacing: .08em; text-transform: uppercase; }
.gv-appt-card .gv-appt-date strong { display: block; font-family: var(--gv-font-display); font-size: 1.4rem; }
.gv-appt-card .gv-appt-body strong { font-family: var(--gv-font-display); font-size: 1.05rem; display: block; }
.gv-appt-card .gv-appt-body span { font-size: .85rem; color: var(--gv-text-muted); }

/* ---------- Modal ---------- */
.gv-modal {
  position: fixed; inset: 0;
  background: rgba(20,17,15,.55);
  display: none;
  align-items: center; justify-content: center;
  z-index: var(--gv-z-modal);
  padding: 20px;
  backdrop-filter: blur(4px);
}
.gv-modal.is-open { display: flex; }
.gv-modal-card {
  background: white;
  border-radius: var(--gv-radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--gv-shadow-lg);
}
.gv-modal-card h3 { font-family: var(--gv-font-display); font-size: 1.4rem; margin-bottom: 6px; }
.gv-modal-card .gv-modal-close {
  float: right;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gv-cream-2);
  color: var(--gv-ink);
  display: grid; place-items: center;
  border: none; cursor: pointer;
  margin: -6px -6px 0 0;
}
.gv-modal-card .gv-modal-close:hover { background: var(--gv-line); }

/* ---------- Toast ---------- */
.gv-toast-stack {
  position: fixed;
  top: 24px; right: 24px;
  z-index: var(--gv-z-toast);
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.gv-toast {
  pointer-events: auto;
  background: var(--gv-ink);
  color: var(--gv-cream);
  padding: 14px 18px;
  border-radius: var(--gv-radius);
  box-shadow: var(--gv-shadow-lg);
  font-weight: 500;
  font-size: .92rem;
  display: flex; align-items: center; gap: 10px;
  min-width: 240px; max-width: 360px;
  animation: gv-toast-in .35s var(--gv-ease-out);
}
.gv-toast.is-success { background: var(--gv-success); color: white; }
.gv-toast.is-error { background: var(--gv-error); color: white; }
.gv-toast.is-warn { background: var(--gv-warn); color: var(--gv-ink); }
@keyframes gv-toast-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 560px) {
  .gv-toast-stack { top: 12px; right: 12px; left: 12px; }
  .gv-toast { min-width: 0; max-width: none; }
}

/* ---------- Carnet / QR ---------- */
.gv-carnet-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 820px) { .gv-carnet-grid { grid-template-columns: 1fr; } }
.gv-qr-box {
  background: white;
  border: 1px solid var(--gv-line);
  border-radius: var(--gv-radius-lg);
  padding: 22px;
  text-align: center;
}
.gv-qr-box img { width: 220px; height: 220px; margin: 0 auto 14px; }

/* ---------- Auth helpers ---------- */
.gv-auth-card .gv-auth-foot {
  display: block; text-align: center;
  margin-top: 18px;
  font-size: .9rem;
  color: var(--gv-text-muted);
}
.gv-auth-card .gv-auth-foot a { color: var(--gv-orange-deep); font-weight: 600; }
.gv-auth-card .gv-auth-foot a:hover { text-decoration: underline; }

/* ---------- Misc helpers ---------- */
.gv-stack { display: flex; flex-direction: column; gap: 14px; }
.gv-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.gv-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.gv-divider { height: 1px; background: var(--gv-line); margin: 24px 0; }
.gv-success-screen {
  text-align: center; padding: 56px 20px;
  background: white;
  border-radius: var(--gv-radius-xl);
  border: 1px solid var(--gv-line);
  max-width: 560px; margin: 0 auto;
}
.gv-success-screen h2 { font-family: var(--gv-font-display); font-size: 2rem; margin-bottom: 10px; }
.gv-success-screen p { color: var(--gv-text-muted); margin-bottom: 20px; }
.gv-success-screen .gv-success-code {
  display: inline-block;
  font-family: var(--gv-font-mono);
  font-size: 1.4rem;
  background: var(--gv-orange-soft);
  color: var(--gv-orange-deep);
  padding: 8px 20px;
  border-radius: var(--gv-radius);
  margin: 8px 0 24px;
  font-weight: 700;
  letter-spacing: .04em;
}
