@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --purple-50: #fdf4ff;
  --purple-100: #fae8ff;
  --purple-200: #f5d0fe;
  --purple-300: #e9d5ff;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --fuchsia-500: #d946ef;
  --pink-50: #fdf2f8;
  --accent: #e11d48;
  --accent-light: #fff1f2;
  --accent-dark: #be123c;
  --accent-gradient: linear-gradient(135deg, #e11d48 0%, #f43f5e 50%, #fb7185 100%);
  --surface: #faf9f7;
  --surface-elevated: #ffffff;
  --ink: #0f172a;
  --ink-muted: #64748b;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --success: #059669;
  --shadow-card: 0 1px 3px rgb(15 23 42 / 0.04), 0 8px 24px rgb(15 23 42 / 0.06);
  --shadow-card-hover: 0 4px 12px rgb(15 23 42 / 0.08), 0 20px 48px rgb(15 23 42 / 0.12);
  --shadow-glow: 0 8px 32px rgb(225 29 72 / 0.25);
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --header-height: 4.5rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-600);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}

body.has-sale-banner {
  padding-top: 7.75rem;
}

body.has-sale-banner .site-header {
  top: 2.75rem;
}

/* Live Sale Banner */
.sale-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  background: linear-gradient(90deg, #7e22ce, #db2777, #7e22ce);
  background-size: 200% 100%;
  animation: sale-shimmer 4s ease-in-out infinite;
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
}

@keyframes sale-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.sale-banner-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.625rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  text-align: center;
}

.sale-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(0,0,0,0.2);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sale-live-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px #4ade80;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.sale-viewers {
  opacity: 0.95;
  font-size: 0.75rem;
}

/* Sale pricing */
.price-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.375rem 0.5rem;
}

.price-original {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-decoration: line-through;
  font-weight: 500;
}

.price-sale {
  font-size: 1rem;
  font-weight: 800;
  color: #dc2626;
}

.detail-price .price-sale {
  font-size: 1.75rem;
}

.detail-price .price-original {
  font-size: 1.125rem;
}

.sale-badge {
  font-size: 0.625rem;
  font-weight: 800;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-sale {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #dc2626;
  color: white;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 9999px;
  z-index: 2;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.live-purchase-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 105;
  max-width: 22rem;
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: 0 10px 40px rgb(0 0 0 / 0.15);
  border: 1px solid var(--gray-100);
  padding: 1rem 1.25rem;
  transform: translateX(-120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.live-purchase-toast.visible {
  transform: translateX(0);
  opacity: 1;
}

.live-purchase-content {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.live-purchase-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.live-purchase-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-700);
}

.live-purchase-text strong {
  color: var(--gray-900);
}

.live-purchase-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

@media (max-width: 640px) {
  .live-purchase-toast {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .sale-banner-text { font-size: 0.75rem; }

  .nav-cta { display: none; }
}

/* Language translator */
.lang-selector {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  background: white;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.lang-toggle:hover,
.lang-selector.open .lang-toggle {
  border-color: var(--purple-400);
  color: var(--purple-700);
  background: var(--purple-50);
}

.lang-chevron {
  transition: transform 0.2s;
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11rem;
  max-height: 16rem;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgb(0 0 0 / 0.12);
  list-style: none;
  padding: 0.375rem;
  z-index: 120;
}

.lang-selector.open .lang-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: none;
  background: none;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
}

.lang-option:hover {
  background: var(--purple-50);
  color: var(--purple-700);
}

.lang-option.active {
  background: var(--purple-100);
  color: var(--purple-700);
}

.lang-flag {
  font-size: 1.125rem;
  line-height: 1;
}

/* Region / currency selector */
.region-selector {
  position: relative;
}

.region-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  background: white;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.region-toggle:hover,
.region-selector.open .region-toggle {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-light);
}

.region-flag {
  font-size: 1.125rem;
  line-height: 1;
}

.region-chevron {
  transition: transform 0.2s;
}

.region-selector.open .region-chevron {
  transform: rotate(180deg);
}

.region-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 15rem;
  max-height: 18rem;
  overflow-y: auto;
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgb(0 0 0 / 0.12);
  list-style: none;
  padding: 0.375rem;
  z-index: 120;
}

.region-selector.open .region-menu {
  display: block;
}

.region-menu-header {
  padding: 0.5rem 0.75rem 0.375rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}

.region-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: none;
  background: none;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
}

.region-option:hover {
  background: var(--accent-light);
}

.region-option.active {
  background: #fff1f2;
  color: var(--accent-dark);
}

.region-option-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  line-height: 1.3;
}

.region-option-text strong {
  font-weight: 700;
  color: var(--ink);
}

.region-option-text small {
  font-size: 0.6875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.regional-branch-note {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.75rem;
}

.mobile-menu-region {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.mobile-menu-region .region-selector {
  width: 100%;
}

.mobile-menu-region .region-toggle {
  width: 100%;
  justify-content: center;
}

.mobile-menu-region .region-menu {
  position: static;
  display: none;
  margin-top: 0.5rem;
  max-height: 14rem;
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

.mobile-menu-region .region-selector.open .region-menu {
  display: block;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-translate-hidden,
.goog-te-gadget,
.skiptranslate iframe,
#goog-gt-tt {
  display: none !important;
}

body > .skiptranslate {
  display: none !important;
}

.goog-te-banner-frame,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Contact channels */
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  background: var(--gray-50);
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-channel:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.contact-channel-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.125rem;
}

.contact-channel-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
}

.contact-channel-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-phone:hover { border-color: var(--purple-300); background: var(--purple-50); }
.contact-phone .contact-channel-icon { background: var(--purple-100); }

.contact-whatsapp:hover { border-color: #86efac; background: #f0fdf4; }
.contact-whatsapp .contact-channel-icon { background: #dcfce7; }

.contact-signal:hover { border-color: #93c5fd; background: #eff6ff; }
.contact-signal .contact-channel-icon { background: #dbeafe; }

.contact-email:hover { border-color: #fcd34d; background: #fffbeb; }
.contact-email .contact-channel-icon { background: #fef3c7; }

.contact-channels-compact .contact-channel {
  padding: 0.75rem 1rem;
}

/* Reservation panel */
.reservation-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--purple-100);
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}

.reservation-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.reservation-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.reservation-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.reservation-summary div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.reservation-summary span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
}

.reservation-summary strong {
  font-size: 0.875rem;
  color: var(--gray-900);
}

.reservation-form .form-group textarea {
  min-height: 5rem;
}

.delivery-address-section {
  margin: 1.25rem 0;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--gray-200);
}

.delivery-address-heading {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.delivery-address-note {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.label-optional {
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.75rem;
}

.reservation-help {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-700);
  margin: 1rem 0 0.75rem;
}

.reservation-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.reservation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: white;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.reservation-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-card);
}

.reservation-btn-email:hover { border-color: #fcd34d; background: #fffbeb; }
.reservation-btn-phone:hover { border-color: var(--purple-300); background: var(--purple-50); }
.reservation-btn-whatsapp:hover { border-color: #86efac; background: #f0fdf4; }
.reservation-btn-signal:hover { border-color: #93c5fd; background: #eff6ff; }

.reservation-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

@media (max-width: 640px) {
  .reservation-channels {
    grid-template-columns: 1fr;
  }
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Header */
#header {
  position: relative;
  z-index: 100;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.3s;
  padding: 1.25rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.06);
  pointer-events: auto;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
  padding: 0.75rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  flex-shrink: 0;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--purple-600), var(--fuchsia-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.2s;
}

.logo:hover .logo-icon { transform: scale(1.1); }

.logo-text { line-height: 1.1; min-width: 0; }
.logo-name { font-weight: 800; font-size: 1.25rem; color: var(--gray-900); letter-spacing: -0.02em; }
.logo-tag { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple-600); font-weight: 600; }

@media (max-width: 1099px) {
  .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: none;
    padding-right: 0.5rem;
  }

  .logo-name {
    font-size: 0.8125rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-tag {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
  }

  .site-header {
    z-index: 120;
    padding: 0.75rem 0;
  }

  .nav {
    padding-right: 3.75rem;
    min-height: 2.75rem;
  }

  .nav-end {
    position: fixed;
    top: calc(0.625rem + env(safe-area-inset-top, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    z-index: 130;
    margin: 0;
    gap: 0;
  }

  body.has-sale-banner .nav-end {
    top: calc(3.625rem + env(safe-area-inset-top, 0px));
  }

  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    background: #fff;
    border: 2px solid var(--purple-300);
    color: var(--purple-700);
    border-radius: 0.75rem;
    box-shadow: 0 4px 14px rgb(91 33 182 / 0.18);
  }

  .menu-toggle:active {
    transform: scale(0.96);
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--purple-600);
    border-color: var(--purple-600);
    color: #fff;
  }

  .mobile-menu {
    position: fixed;
    top: calc(4.25rem + env(safe-area-inset-top, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    left: auto;
    width: min(20rem, calc(100vw - 1.5rem));
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    max-height: calc(100dvh - 5.5rem);
  }

  body.has-sale-banner .mobile-menu {
    top: calc(7.25rem + env(safe-area-inset-top, 0px));
    max-height: calc(100dvh - 8.5rem);
  }

  body.has-sale-banner {
    padding-top: 9rem;
  }

  body.has-sale-banner .site-header {
    top: 3.75rem;
  }

  .mobile-menu-lang {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
  }

  .mobile-menu-lang .lang-selector {
    width: 100%;
  }

  .mobile-menu-lang .lang-toggle {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-lang .lang-menu {
    position: static;
    display: none;
    margin-top: 0.5rem;
    max-height: 12rem;
    box-shadow: none;
    border: 1px solid var(--gray-200);
  }

  .mobile-menu-lang .lang-selector.open .lang-menu {
    display: block;
  }
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

@media (min-width: 1100px) {
  .nav-links { display: flex; gap: 1.25rem; }
  .nav-cta { display: block; }
  .menu-toggle { display: none; }
}

@media (min-width: 1280px) {
  .nav-links { gap: 1.75rem; }
}

@media (min-width: 1100px) and (max-width: 1279px) {
  .nav-link { font-size: 0.8125rem; }
}

.nav-link {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color 0.2s;
  pointer-events: auto;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active { color: var(--purple-600); }

.nav-cta {
  display: none;
  position: relative;
  z-index: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-cta { display: block; }
}

.nav-cta .btn-outline.active {
  background: var(--purple-50);
  border-color: var(--purple-600);
  color: var(--purple-700);
}

.menu-toggle {
  display: flex;
  position: relative;
  z-index: 101;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-xl);
  color: var(--gray-900);
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  z-index: 102;
  padding: 1rem 1.5rem 1.5rem;
  max-height: calc(100dvh - 5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.12);
  border-top: 1px solid var(--gray-100);
}

body.has-sale-banner .mobile-menu {
  max-height: calc(100dvh - 8.5rem);
}

@media (min-width: 768px) {
  body.has-sale-banner .mobile-menu {
    max-height: calc(100dvh - 8.5rem);
  }
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--gray-100); }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-weight: 600;
  color: var(--gray-900);
}

.mobile-menu-about {
  margin-top: 1rem;
  width: 100%;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-600), var(--fuchsia-500));
  color: white;
  box-shadow: 0 4px 14px rgb(147 51 234 / 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgb(147 51 234 / 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple-200);
  color: var(--purple-700);
}

.btn-outline:hover { background: var(--purple-50); }

.btn-dark {
  background: var(--gray-900);
  color: white;
}

.btn-dark:hover { background: #1f2937; }

.btn-sm { font-size: 0.75rem; padding: 0.625rem 1.25rem; }

/* Typography */
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-600);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 36rem;
  margin-top: 1rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--purple-600), var(--fuchsia-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero */
.hero {
  min-height: calc(100dvh - 5rem);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--purple-50), var(--pink-50), #fdf4ff);
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple-200), transparent);
  opacity: 0.3;
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 3rem 0 5rem;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 4rem 0 6rem; }
}

.hero-grid--solo {
  grid-template-columns: 1fr !important;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 3rem;
}

.hero-grid--solo .hero-content {
  text-align: center;
}

.hero-grid--solo .hero p {
  margin-left: auto;
  margin-right: auto;
}

.hero-grid--solo .hero-actions {
  justify-content: center;
}

.hero-grid--solo .hero-stats {
  justify-content: center;
}

.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-600);
}

.hero-badge::before, .hero-badge::after {
  content: '';
  height: 1px;
  width: 2.5rem;
  background: var(--purple-500);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.0625rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (min-width: 1024px) { .hero p { margin: 0 0 2rem; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 1024px) { .hero-actions { justify-content: flex-start; } }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--purple-200);
  width: 100%;
}

@media (min-width: 640px) { .hero-stats { gap: 2.5rem; } }

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-600);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) { .hero-image-wrap { justify-content: flex-end; } }

.hero-image {
  position: relative;
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 4/5;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 1px solid rgba(255,255,255,0.5);
  animation: float 6s ease-in-out infinite;
}

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

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.hero-health-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-2xl);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}

.hero-health-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--purple-600), var(--fuchsia-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.health-guarantee-section {
  padding-top: 0;
  padding-bottom: 3rem;
}

.health-guarantee-feature {
  display: block;
  max-width: 36rem;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.health-guarantee-feature:hover {
  transform: translateY(-4px);
}

.health-guarantee-image {
  margin: 0 auto;
}

.health-guarantee-image .health-guarantee-title {
  font-weight: 700;
  color: #111827;
  font-size: 0.875rem;
}

.health-guarantee-image .health-guarantee-sub {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 0;
}

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

/* Sections */
.section { padding: 5rem 0; }
.section-purple { background: var(--purple-50); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-header .section-tag::before,
.section-header .section-tag::after {
  content: '';
  height: 1px;
  width: 2rem;
  background: var(--purple-200);
}

/* Cards */
.card {
  background: white;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.card:hover .card-image img { transform: scale(1.08); }

.badge-available {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #10b981;
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.badge-pickup {
  background: var(--purple-600);
}

.card-body {
  padding: 1.5rem;
  text-align: center;
}

.card-divider {
  height: 4px;
  width: 2rem;
  background: var(--purple-500);
  border-radius: 9999px;
  margin: 0 auto 1rem;
  opacity: 0.8;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-600);
  margin-bottom: 0.75rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.card-meta .dot { color: var(--gray-300); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-600);
  transition: gap 0.2s;
}

.card:hover .card-link { gap: 0.5rem; }

/* Grids */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Feature cards */
.feature-card {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.2s;
}

.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-icon.purple { background: var(--purple-100); color: var(--purple-600); }
.feature-icon.red { background: #fee2e2; color: #dc2626; }
.feature-icon.blue { background: #dbeafe; color: #2563eb; }

/* Breed card */
.breed-card .card-image { aspect-ratio: 3/2; }

.breed-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
}

.breed-name {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  z-index: 1;
}

.breed-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--purple-50);
  color: var(--purple-600);
}

/* Filters */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
}

.filter-group { display: flex; flex-direction: column; gap: 0.25rem; }

.filter-group label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.filter-group select,
.filter-group input {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  min-width: 10rem;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgb(168 85 247 / 0.15);
}

.results-count {
  margin-left: auto;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 600;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  background: white;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination button:hover:not(:disabled) {
  border-color: var(--purple-500);
  color: var(--purple-600);
}

.pagination button.active {
  background: var(--purple-600);
  color: white;
  border-color: var(--purple-600);
}

.pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

/* Page hero */
.page-hero {
  padding: 2rem 0 3rem;
  background: linear-gradient(135deg, var(--purple-50), var(--pink-50));
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

/* Detail page gallery */
.detail-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0 5rem;
}

@media (min-width: 1024px) {
  .detail-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start; }
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-grid img,
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
  background: var(--purple-50);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item.active {
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgb(147 51 234 / 0.2);
}

.gallery-main {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card-hover);
  background: var(--purple-50);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
}

.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.75;
  transition: all 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--purple-600);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-align: center;
}

/* Blog */
.blog-card-image { aspect-ratio: 16/10; }

.blog-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--purple-600);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.blog-card-body { text-align: left; align-items: flex-start; }

.blog-card-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-article { max-width: 48rem; margin: 0 auto; }

.blog-article-header { margin-bottom: 2rem; text-align: center; }

.blog-article-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.blog-hero-image {
  border-radius: var(--radius-3xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-card-hover);
}

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

.blog-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.blog-content h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-900);
  margin: 2rem 0 1rem;
}

.blog-content p { margin-bottom: 1rem; }

.blog-content ul {
  margin: 1rem 0 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-content a {
  color: var(--purple-600);
  font-weight: 600;
  text-decoration: underline;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2.5rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.blog-cta {
  background: var(--purple-50);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
}

.blog-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.blog-cta p { margin-bottom: 1.5rem; }

.blog-related { margin-top: 4rem; }

.blog-related h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 2rem;
}

.blog-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.blog-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-600);
}

.blog-stat-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

.detail-info h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.detail-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--purple-600);
  margin-bottom: 1.5rem;
}

.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-item {
  background: var(--purple-50);
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.spec-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.spec-value {
  font-weight: 700;
  color: var(--gray-900);
}

/* Testimonials */
.testimonial {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Contact form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
}

.form-group textarea { min-height: 8rem; resize: vertical; }

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: #9ca3af;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; max-width: 24rem; }

.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-600), var(--fuchsia-500));
  border-radius: var(--radius-3xl);
  padding: 3rem 2rem;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner p { opacity: 0.9; margin-bottom: 1.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; }

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.15); }

/* Loading */
.loading {
  text-align: center;
  padding: 3rem;
  color: var(--gray-500);
}

.spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid var(--purple-100);
  border-top-color: var(--purple-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* About two-col */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.about-image {
  border-radius: 2.5rem;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 4px solid white;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: white;
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid var(--gray-100);
}

.about-badge-value {
  font-size: 2.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-500), var(--fuchsia-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem;
  background: white;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* Utility */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Policy page */
.policy-content {
  max-width: 52rem;
}

.policy-toc {
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.policy-toc h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.policy-toc ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .policy-toc ul { grid-template-columns: 1fr 1fr; }
}

.policy-toc a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple-700);
}

.policy-toc a:hover { color: var(--purple-900); }

.policy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 7rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 1.5rem 0 0.75rem;
}

.policy-section p,
.policy-section li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.policy-section ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.policy-section li { margin-bottom: 0.5rem; }

.policy-section a {
  color: var(--purple-700);
  font-weight: 600;
}

.policy-section-cert-first {
  margin-bottom: 2.5rem;
}

.policy-section-cert-first + .policy-toc {
  margin-bottom: 2.5rem;
}

.policy-cert-intro {
  margin-bottom: 2rem;
}

/* Breeder certificate */
.breeder-certificate {
  margin: 2rem 0;
}

.certificate-frame {
  position: relative;
  background: linear-gradient(180deg, #fffef8 0%, #fff 40%, #fdf8ff 100%);
  border: 3px solid #c9a227;
  border-radius: 0.5rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.08), inset 0 0 0 1px rgb(201 162 39 / 0.35);
  text-align: center;
  overflow: hidden;
}

.certificate-corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border: 2px solid #c9a227;
}

.certificate-corner-tl { top: 0.75rem; left: 0.75rem; border-right: none; border-bottom: none; }
.certificate-corner-tr { top: 0.75rem; right: 0.75rem; border-left: none; border-bottom: none; }
.certificate-corner-bl { bottom: 0.75rem; left: 0.75rem; border-right: none; border-top: none; }
.certificate-corner-br { bottom: 0.75rem; right: 0.75rem; border-left: none; border-top: none; }

.certificate-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgb(201 162 39 / 0.35);
}

.certificate-registry {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c5e10;
}

.certificate-registry-sub {
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.certificate-seal {
  display: flex;
  justify-content: center;
  margin: 1rem 0 1.5rem;
}

.certificate-seal-inner {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f5e6a8, #c9a227 55%, #8b6914);
  border: 3px solid #8b6914;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #3d2f08;
  box-shadow: 0 4px 12px rgb(139 105 20 / 0.35);
}

.certificate-seal-icon {
  display: flex;
  color: #3d2f08;
  margin-bottom: 0.125rem;
}

.certificate-seal-text {
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.certificate-title {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.certificate-subtitle {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.certificate-name {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--purple-800);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: Georgia, 'Times New Roman', serif;
}

.certificate-name span {
  display: block;
  font-size: 0.65em;
  font-weight: 700;
  color: var(--gray-700);
  margin-top: 0.25rem;
}

.certificate-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

@media (min-width: 640px) {
  .certificate-details { grid-template-columns: repeat(4, 1fr); max-width: none; }
}

.certificate-detail {
  background: rgb(255 255 255 / 0.7);
  border: 1px solid rgb(201 162 39 / 0.25);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.certificate-detail-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.certificate-detail strong {
  font-size: 0.8125rem;
  color: var(--gray-900);
}

.certificate-standards {
  text-align: left;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  padding: 1rem 1.25rem;
  background: rgb(250 245 255 / 0.8);
  border-radius: 0.75rem;
  border: 1px solid var(--purple-100);
}

.certificate-standards p {
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  color: var(--gray-800);
}

.certificate-standards ul {
  list-style: none;
  padding: 0;
}

.certificate-standards li {
  font-size: 0.8125rem;
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
  color: var(--gray-600);
}

.certificate-standards li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-600);
  font-weight: 800;
}

.certificate-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.certificate-footer {
  display: grid;
  gap: 2rem;
  max-width: 24rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
  .certificate-footer { grid-template-columns: 1fr 1fr; max-width: 32rem; }
}

.certificate-signature-line {
  height: 1px;
  background: var(--gray-300);
  margin-bottom: 0.5rem;
}

.certificate-signature-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-800);
}

.certificate-signature-title {
  font-size: 0.6875rem;
  color: var(--gray-500);
}

.certificate-verify {
  font-size: 0.6875rem;
  color: var(--gray-500);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgb(201 162 39 / 0.4);
}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media print {
  body.has-sale-banner { padding-top: 0; }
  .sale-banner, .live-purchase-toast, .site-header, .site-footer, .policy-toc,
  .policy-section:not(#breeder-certificate), .cta-banner, .certificate-actions,
  .page-hero { display: none !important; }
  .breeder-certificate { margin: 0; }
  .certificate-frame { box-shadow: none; border-width: 2px; }
}

/* Reviews page */
.reviews-stats {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--purple-700);
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: white;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.review-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--purple-50);
}

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

.review-delivery-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(17, 24, 39, 0.82);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
}

.review-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 1rem;
  flex: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: 800;
  color: var(--gray-900);
  font-size: 0.9375rem;
}

.review-location {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.review-kitten {
  text-align: right;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--purple-700);
}

.review-kitten small {
  display: block;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 0.125rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════
   MODERN THEME — v1.3
   ═══════════════════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  padding: 0.875rem 0;
  background: rgba(250, 249, 247, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgb(15 23 42 / 0.06);
  box-shadow: none;
}

.site-header.scrolled {
  padding: 0.625rem 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgb(15 23 42 / 0.06);
}

.logo-icon {
  background: var(--accent-gradient);
  border-radius: 0.875rem;
  box-shadow: var(--shadow-glow);
}

.logo-name { color: var(--ink); font-size: 1.125rem; }
.logo-tag { color: var(--accent); letter-spacing: 0.12em; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--accent-light);
}

.nav-shop-btn {
  font-size: 0.8125rem !important;
  padding: 0.625rem 1.25rem !important;
  box-shadow: var(--shadow-glow);
}

.mobile-menu-shop {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

.mobile-menu-about { margin-top: 0.75rem; }

.menu-toggle {
  border-color: var(--gray-200) !important;
  color: var(--ink) !important;
  box-shadow: var(--shadow-card) !important;
}

.menu-toggle[aria-expanded="true"] {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}

/* Buttons */
.btn-primary {
  background: var(--accent-gradient);
  box-shadow: var(--shadow-glow);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgb(225 29 72 / 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gray-200);
  color: var(--ink);
  background: var(--surface-elevated);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-tag { color: var(--accent); }

/* Hero */
.hero {
  min-height: calc(100dvh - var(--header-height));
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgb(225 29 72 / 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgb(168 85 247 / 0.06), transparent 50%),
    var(--surface);
}

.hero::before {
  background: radial-gradient(circle, rgb(251 113 133 / 0.15), transparent 70%);
  width: 900px;
  height: 900px;
  top: -200px;
  right: -200px;
}

.hero-badge {
  background: var(--surface-elevated);
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  box-shadow: var(--shadow-card);
}

.hero-badge::before,
.hero-badge::after { display: none; }

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgb(5 150 105 / 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  color: var(--ink);
  letter-spacing: -0.04em;
}

.hero p strong { color: var(--accent); font-weight: 800; }

.hero-stats {
  border-top-color: var(--gray-200);
  gap: 1.5rem;
}

.stat-value {
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.hero-image {
  border-radius: 2rem;
  border: 4px solid white;
  box-shadow: var(--shadow-card-hover);
}

.hero-health-badge {
  border-radius: 1.25rem;
  border: 1px solid rgb(255 255 255 / 0.8);
}

.hero-health-icon {
  background: var(--accent-gradient);
}

/* Trust strip */
.trust-strip {
  background: var(--ink);
  color: white;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.trust-strip-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
}

.trust-icon { font-size: 1.5rem; flex-shrink: 0; }

.trust-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.trust-item span {
  display: block;
  font-size: 0.6875rem;
  color: rgb(255 255 255 / 0.55);
  margin-top: 0.125rem;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-purple {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--surface) 100%);
}

.section-title { color: var(--ink); }

.feature-card {
  border: 1px solid var(--gray-100);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-divider { background: var(--accent); }

/* Kitten cards — shop style */
.kitten-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease;
}

.kitten-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.kitten-card-link {
  display: block;
  color: inherit;
}

.kitten-card-image {
  aspect-ratio: 4 / 5;
  position: relative;
}

.kitten-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(15 23 42 / 0.55) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.kitten-card:hover .kitten-card-shade { opacity: 1; }

.kitten-card-image img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kitten-card:hover .kitten-card-image img {
  transform: scale(1.06);
}

.badge-available {
  top: 0.75rem;
  left: 0.75rem;
  background: var(--success);
  font-size: 0.625rem;
  padding: 0.35rem 0.65rem;
  box-shadow: 0 2px 8px rgb(5 150 105 / 0.35);
}

.badge-pickup { top: 2.75rem; background: var(--accent); }

.card-price-chip {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: white;
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 800;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgb(15 23 42 / 0.15);
  z-index: 2;
}

.card-price-chip .price-sale { color: var(--accent); font-size: inherit; }

.card-photo-count {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgb(15 23 42 / 0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  border-radius: 9999px;
  z-index: 2;
}

.kitten-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
  text-align: left;
}

.kitten-card-body .card-title {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
  color: var(--ink);
}

.kitten-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
}

.kitten-chip {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--gray-100);
  color: var(--ink-muted);
}

.kitten-chip-male { background: #dbeafe; color: #1d4ed8; }
.kitten-chip-female { background: #fce7f3; color: #be185d; }
.kitten-chip-muted { background: var(--gray-50); color: var(--gray-500); }

.kitten-age {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: var(--gray-50);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
}

.kitten-card:hover .card-cta-btn {
  background: var(--accent);
  color: white;
}

.free-shipping-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
  padding: 0.5rem 0.75rem;
  border-radius: 0.625rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Professional shipping info block */
.shipping-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.375rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
}

.shipping-info-compact {
  align-items: center;
  gap: 0.625rem;
  margin: 0.5rem 0 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.75rem;
  text-align: left;
}

.shipping-info-compact svg {
  flex-shrink: 0;
  color: #059669;
}

.shipping-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.shipping-info-title {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #047857;
  line-height: 1.3;
}

.shipping-info-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: #065f46;
  line-height: 1.4;
}

.shipping-info-sub strong {
  font-weight: 700;
  color: #047857;
}

.shipping-info-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  background: white;
  border: 1px solid #a7f3d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  box-shadow: 0 2px 8px rgb(5 150 105 / 0.12);
}

.shipping-info-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.shipping-info-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 0.875rem;
}

.shipping-info-timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem 0.5rem;
  padding: 0.625rem 0.875rem;
  background: white;
  border-radius: 0.625rem;
  border: 1px solid #d1fae5;
}

.shipping-info-timeline-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  width: 100%;
}

.shipping-info-timeline-value {
  font-size: 1.125rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: -0.02em;
}

.shipping-info-timeline-note {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
}

.free-shipping-note-compact {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.6875rem;
  padding: 0.4rem 0.625rem;
}

.free-shipping-note svg {
  flex-shrink: 0;
  color: #059669;
}

.free-shipping-note strong {
  font-weight: 700;
}

.detail-info .free-shipping-note {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.kitten-included-kit {
  margin-bottom: 1.5rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
  border: 1px solid #fde68a;
}

.kitten-included-kit-compact {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  margin: 0 0 0.75rem;
  padding: 0.45rem 0.625rem;
  border-radius: 0.625rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.625rem;
  line-height: 1.45;
  font-weight: 600;
  text-align: left;
}

.kitten-included-kit-compact svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #d97706;
}

.kitten-included-title {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400e;
  margin-bottom: 0.75rem;
}

.kitten-included-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .kitten-included-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
  }
}

.kitten-included-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.kitten-included-list svg {
  flex-shrink: 0;
  color: #d97706;
}

.kitten-grid { gap: 1.25rem; }

/* Catalog page */
.catalog-hero {
  padding: 2.5rem 0 2rem;
  background:
    linear-gradient(135deg, var(--ink) 0%, #1e293b 100%);
  color: white;
}

.catalog-hero-inner {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  .catalog-hero-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.catalog-hero .section-tag {
  color: rgb(251 113 133);
  margin-bottom: 0.75rem;
}

.catalog-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.catalog-hero p {
  color: rgb(255 255 255 / 0.7);
  font-size: 0.9375rem;
  max-width: 28rem;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--gray-500);
  pointer-events: none;
}

.catalog-hero-search input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  border-radius: var(--radius-2xl);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.2);
}

.catalog-hero-search input:focus {
  outline: none;
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.2), 0 0 0 3px rgb(225 29 72 / 0.3);
}

.catalog-hero-search input::placeholder { color: var(--gray-500); }

.filters-sticky-wrap {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: rgb(250 249 247 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
}

.quick-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.quick-filters::-webkit-scrollbar { display: none; }

.quick-filter-pill {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 9999px;
  background: white;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-filter-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.quick-filter-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: var(--shadow-glow);
}

.filters-bar-modern {
  margin-bottom: 0;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-xl);
  gap: 0.75rem;
}

.btn-filter-clear {
  padding: 0.5rem 1rem;
  border: 1px dashed var(--gray-300);
  border-radius: 9999px;
  background: transparent;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-filter-clear:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

.catalog-section { padding-top: 2rem; }

.filter-group select,
.filter-group input {
  border-radius: 0.625rem;
  border-color: var(--gray-200);
  background: var(--surface);
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(225 29 72 / 0.12);
}

.results-count {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
}

.pagination button.active {
  background: var(--accent);
  border-color: var(--accent);
}

.pagination button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

/* Detail page */
.page-hero {
  background: linear-gradient(135deg, var(--ink), #334155);
  color: white;
  padding: 3rem 0;
}

.page-hero h1 { color: white; }
.page-hero .section-tag { color: rgb(251 113 133); }
.page-hero .section-subtitle { color: rgb(255 255 255 / 0.7); }

.detail-price,
.detail-price .price-sale {
  color: var(--accent);
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.detail-specs .spec-item {
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  background: var(--surface-elevated);
}

.gallery-item.active,
.gallery-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(225 29 72 / 0.15);
}

.reservation-panel {
  border-color: var(--gray-200);
  background: linear-gradient(180deg, var(--accent-light) 0%, white 100%);
}

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 3.5rem 0 1.5rem;
}

.cta-banner {
  background: var(--accent-gradient);
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgb(255 255 255 / 0.15), transparent 50%);
  pointer-events: none;
}

.testimonial {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  transition: box-shadow 0.25s ease;
}

.testimonial:hover { box-shadow: var(--shadow-card-hover); }

.price-sale { color: var(--accent); }

.spinner {
  border-color: var(--accent-light);
  border-top-color: var(--accent);
}

@media (max-width: 1099px) {
  :root { --header-height: 4rem; }
}

/* SEO: FAQ, breadcrumbs, content blocks */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  list-style: none;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  color: var(--gray-500);
}

.breadcrumbs li + li::before {
  content: '›';
  margin-right: 0.375rem;
  color: var(--gray-300);
}

.breadcrumbs a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.section-faq {
  background: var(--gray-50);
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  padding: 1.125rem 1.25rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ink-muted);
}

.seo-content-section {
  background: white;
}

.seo-content-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 56rem;
}

@media (min-width: 768px) {
  .seo-content-grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}

.seo-content-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.seo-content-grid p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.seo-catalog-footer {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: var(--radius-2xl);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  max-width: 48rem;
}

.seo-catalog-footer h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.seo-catalog-footer p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.seo-catalog-footer a {
  color: var(--accent);
  font-weight: 600;
}

/* Live support assistant */
.support-assistant {
  position: fixed !important;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2147483000 !important;
  font-family: var(--font-sans, 'Plus Jakarta Sans', system-ui, sans-serif);
  pointer-events: none;
}

.support-assistant > * {
  pointer-events: auto;
}

.support-assistant-launcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-assistant-launcher:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.5);
}

.support-assistant-launcher-icon {
  display: flex;
}

.support-assistant-panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(32rem, calc(100vh - 6rem));
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-200, #e5e7eb);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.support-assistant-panel[hidden] {
  display: none !important;
}

.support-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.875rem;
  background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%);
  color: white;
}

.support-assistant-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.support-assistant-header-info strong {
  display: block;
  font-size: 0.9375rem;
}

.support-assistant-header-info span {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.9;
  margin-top: 0.125rem;
}

.support-assistant-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.support-assistant-close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.support-assistant-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.support-assistant-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--gray-50, #f9fafb);
  min-height: 14rem;
}

.support-chat-msg {
  display: flex;
}

.support-chat-msg--user {
  justify-content: flex-end;
}

.support-chat-bubble {
  max-width: 88%;
  padding: 0.625rem 0.875rem;
  border-radius: 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.support-chat-msg--bot .support-chat-bubble {
  background: white;
  color: var(--ink, #111827);
  border: 1px solid var(--gray-200, #e5e7eb);
  border-bottom-left-radius: 0.25rem;
}

.support-chat-msg--user .support-chat-bubble {
  background: #7c3aed;
  color: white;
  border-bottom-right-radius: 0.25rem;
}

.support-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.625rem;
}

.support-chat-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3125rem 0.625rem;
  border-radius: 999px;
  background: var(--gray-100, #f3f4f6);
  color: #7c3aed;
  font-size: 0.6875rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--gray-200, #e5e7eb);
  transition: background 0.15s;
}

.support-chat-chip:hover {
  background: #ede9fe;
}

.support-chat-typing {
  display: flex;
  gap: 0.25rem;
  padding: 0.75rem 1rem !important;
}

.support-chat-typing span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #a78bfa;
  animation: support-typing 1.2s infinite ease-in-out;
}

.support-chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.support-chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes support-typing {
  0%, 80%, 100% { opacity: 0.35; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

.support-assistant-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--gray-200, #e5e7eb);
  background: white;
}

.support-assistant-input {
  flex: 1;
  min-width: 0;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--gray-200, #e5e7eb);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-family: inherit;
  outline: none;
}

.support-assistant-input:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.25);
}

.support-assistant-send {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: #7c3aed;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-assistant-send:hover {
  background: #6d28d9;
}

.support-assistant-footer {
  padding: 0.5rem 0.875rem 0.75rem;
  font-size: 0.6875rem;
  color: var(--gray-500, #6b7280);
  text-align: center;
  background: white;
  border-top: 1px solid var(--gray-100, #f3f4f6);
}

.support-assistant-footer a {
  color: #7c3aed;
  font-weight: 600;
}

@media (max-width: 480px) {
  .support-assistant {
    bottom: 1rem;
    right: 1rem;
  }

  .support-assistant-launcher-label {
    display: none;
  }

  .support-assistant-launcher {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .support-assistant-panel {
    width: calc(100vw - 2rem);
    right: 0;
  }
}

