/*
 * PrazerOn — Design System
 * WP Equivalent: assets/css/main.css (enqueued via functions.php)
 * Philosophy: "Boutique Blanc" — Minimalismo Premium + Glassmorphism Luminoso
 * Branco domina, vinho pontua cirurgicamente. Fotos são protagonistas absolutas.
 * Font: Plus Jakarta Sans (400/500/600/700/800)
 */

:root {
  --wine: #8B1A4A;
  --wine-hover: #A82259;
  --wine-light: #C4385A;
  --wine-bg: #FDF2F5;
  --text: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #999999;
  --bg: #FFFFFF;
  --surface: #F7F7F7;
  --border-color: #E8E8E8;
  --whatsapp: #25D366;
  --telegram: #0088CC;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

button, a { cursor: pointer; }
a { text-decoration: none; }
img { display: block; }

/* ============================================
   GLASSMORPHISM SYSTEM
   ============================================ */
@supports (backdrop-filter: blur(1px)) {
  .glass {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  }
  .glass-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .glass-modal {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.4);
  }
  .glass-filter {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
  }
  .glass-footer {
    background: rgba(247,247,247,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,0.06);
  }
}
@supports not (backdrop-filter: blur(1px)) {
  .glass { background: rgba(255,255,255,0.97); }
  .glass-header { background: rgba(255,255,255,0.98); border-bottom: 1px solid rgba(0,0,0,0.08); }
  .glass-modal { background: rgba(255,255,255,0.99); }
  .glass-filter { background: rgba(255,255,255,0.97); }
  .glass-footer { background: rgba(247,247,247,0.99); }
}

/* ============================================
   AGE GATE BACKDROP
   ============================================ */
.age-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* ============================================
   VIP CARD GLOW
   ============================================ */
.card-vip {
  border: 1.5px solid var(--wine);
  box-shadow:
    0 0 0 1px rgba(139,26,74,0.08),
    0 4px 24px rgba(139,26,74,0.12),
    0 12px 48px rgba(139,26,74,0.06);
}

/* ============================================
   PHOTO GRID
   ============================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}
.photo-grid-item--vip,
.photo-grid-item--cta {
  grid-column: 1 / -1;
  margin: 4px 0;
}
@media (min-width: 560px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
}
@media (min-width: 768px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .card-vip-inner { display: grid !important; grid-template-columns: 300px 1fr !important; align-items: stretch; }
  .card-vip-photo { height: auto !important; min-height: 280px; }
  .card-vip-photo img { border-radius: 16px 0 0 16px !important; height: 100% !important; }
  .card-vip-body { border-radius: 0 16px 16px 0 !important; }
}
@media (min-width: 1024px) {
  .photo-grid { grid-template-columns: repeat(10, 1fr); gap: 5px; }
  .photo-grid-item--normal { grid-column: span 2; }
  .photo-grid-item--vip,
  .photo-grid-item--cta { grid-column: span 5; }
}

/* ============================================
   CARD PHOTO
   ============================================ */
.card-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  will-change: transform;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms, filter 300ms;
}
.card-photo:hover img {
  transform: scale(1.02);
  filter: brightness(1.05);
}
.card-photo .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 76%;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.45) 52%, rgba(0,0,0,0.08) 76%, transparent 100%);
  pointer-events: none;
}

/* Online glow border on cards */
.card-photo.card-online {
  box-shadow: 0 0 0 1.5px rgba(37,211,102,0.5), 0 2px 12px rgba(37,211,102,0.12);
}

/* ============================================
   ONLINE DOT PULSE
   ============================================ */
@keyframes pulse-online {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(37,211,102,0); }
}
.online-dot {
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px rgba(37,211,102,0.3);
  animation: pulse-online 2s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slide-up-fade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.vip-enter { animation: slide-up-fade 500ms cubic-bezier(0.16,1,0.3,1) forwards; }

@keyframes card-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-animate { animation: card-fade-in 400ms cubic-bezier(0.16,1,0.3,1) both; }

/* ============================================
   CATEGORY TABS
   ============================================ */
.category-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .category-tabs { justify-content: center; }
}
.category-tab {
  flex-shrink: 0;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--text-secondary);
  background: transparent; border: none;
  cursor: pointer;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.category-tab.active { background: var(--wine); color: white; }

/* ============================================
   FILTER PILLS
   ============================================ */
.filter-pills {
  display: flex; gap: 8px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
}
.filter-pills::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .filter-pills-section { display: flex; justify-content: center; }
  .filter-pills-section .glass-filter { width: max-content; max-width: 100%; }
}
.filter-pill {
  flex-shrink: 0;
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  background: transparent; border: 1px solid var(--border-color);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.filter-pill.active { background: #1A1A1A; color: white; border-color: #1A1A1A; }

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  border: 1px solid var(--border-color);
  background: white;
  transition: border-color 200ms, box-shadow 200ms;
}
.search-bar:focus-within {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(139,26,74,0.08);
}
.search-bar input {
  flex: 1; border: none; outline: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; color: var(--text); background: transparent;
}
.search-bar input::placeholder { color: var(--text-muted); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-wine {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: var(--wine); color: white;
  border-radius: 12px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer;
  transition: background 200ms, box-shadow 200ms, transform 150ms;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-wine:hover { background: var(--wine-hover); box-shadow: 0 4px 16px rgba(139,26,74,0.3); transform: translateY(-1px); }
.btn-wine:active { transform: translateY(0); }

.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; background: var(--whatsapp); color: white;
  border-radius: 12px; font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; flex: 1;
  transition: background 200ms, box-shadow 200ms;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-whatsapp:hover { background: #1ebe5d; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }

.btn-telegram {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; background: var(--telegram); color: white;
  border-radius: 12px; font-size: 13px; font-weight: 700;
  border: none; cursor: pointer; flex: 1;
  transition: background 200ms, box-shadow 200ms;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-telegram:hover { background: #0077b3; box-shadow: 0 4px 12px rgba(0,136,204,0.3); }

/* ============================================
   HERO RESPONSIVE
   ============================================ */
.hero-h1 { font-size: 22px; }
@media (min-width: 768px) { .hero-h1 { font-size: 28px; } }
@media (min-width: 1024px) { .hero-h1 { font-size: 36px; } }

/* ============================================
   SCROLLBAR GLOBAL
   ============================================ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================
   FOCUS STATES
   ============================================ */
:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }

/* ============================================
   PROFILE PAGE GALLERY
   ============================================ */
.gallery-thumb {
  width: 56px; height: 56px; border-radius: 8px;
  overflow: hidden; cursor: pointer; flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 200ms, opacity 200ms;
}
.gallery-thumb.active { border-color: var(--wine); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   CITY DROPDOWN
   ============================================ */
.city-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 200;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
}
.city-option {
  padding: 10px 14px; border-radius: 10px;
  font-size: 14px; color: var(--text-secondary);
  cursor: pointer; white-space: nowrap;
  transition: background 150ms, color 150ms;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.city-option:hover { background: var(--wine-bg); color: var(--wine); }
.city-option.selected { color: var(--wine); font-weight: 600; background: var(--wine-bg); }

/* ============================================
   SKELETON SHIMMER
   ============================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%; margin-left: auto; margin-right: auto;
  padding-left: 1rem; padding-right: 1rem;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; } }

/* ============================================
   LINE CLAMP (fallback for browsers without Tailwind)
   ============================================ */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   AUTH PAGES — Form inputs focus ring
   ============================================ */
input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(139,26,74,0.08);
}

/* ============================================
   AUTH PAGES — Checkbox custom
   ============================================ */
input[type="checkbox"] {
  accent-color: var(--wine);
}

/* VIP card spanning is handled by Alpine :style binding on the wrapper div */

/* ============================================
   NO UNDERLINE for card links
   ============================================ */
.no-underline { text-decoration: none; }

/* ============================================
   PROFILE INFO BOX (Cachê + Local + Confiança)
   ============================================ */
.profile-info-box {
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}
.info-box-row {
  display: flex;
  align-items: stretch;
}
.info-box-cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  background: transparent;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  min-width: 0;
}
.info-box-divider-v {
  width: 1px;
  background: var(--border-color);
  align-self: stretch;
  flex-shrink: 0;
}
.info-box-trust-cell {
  cursor: pointer;
  transition: background 200ms;
}
.info-box-trust-cell:hover {
  background: var(--wine-bg);
}

/* ============================================
   PROFILE DETAILS (Description + Schedule + Stats)
   ============================================ */
.profile-description-card {
  position: relative;
  padding: 14px 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(253,242,245,0.92) 0%, rgba(255,255,255,0.98) 100%);
  border: 1px solid rgba(139,26,74,0.14);
  box-shadow: 0 12px 28px rgba(139,26,74,0.06);
}
.profile-description-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--wine) 0%, rgba(139,26,74,0.22) 100%);
}
.profile-description-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-left: 10px;
  margin-bottom: 8px;
}
.profile-section-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
}
.profile-section-kicker-muted {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
}
.profile-section-kicker-soft {
  color: #9ca3af;
}
.profile-description-text {
  margin: 0;
  padding-left: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: #4b5563;
}
.profile-description-toggle {
  margin-top: 8px;
  padding-left: 10px;
  background: transparent;
  border: none;
  color: var(--wine);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.profile-schedule-card {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(247,247,247,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}
.profile-schedule-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.profile-schedule-note {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #9ca3af;
}
.profile-schedule-list {
  display: flex;
  flex-direction: column;
}
.profile-schedule-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 8px 0;
}
.profile-schedule-row + .profile-schedule-row {
  border-top: 1px dashed rgba(0,0,0,0.06);
}
.profile-schedule-day {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}
.profile-schedule-hours {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  color: #4b5563;
}
.profile-schedule-row.is-closed .profile-schedule-hours {
  color: #9ca3af;
  font-weight: 500;
}
.profile-schedule-fallback {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.profile-stat-card {
  min-width: 0;
  min-height: 112px;
  padding: 12px 10px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(139,26,74,0.08);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-stat-icon svg {
  width: 18px;
  height: 18px;
}
.profile-stat-body {
  min-width: 0;
}
.profile-stat-label {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}
.profile-stat-value {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--text);
  word-break: break-word;
}
@media (max-width: 420px) {
  .profile-description-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .profile-stats-grid {
    gap: 8px;
  }
  .profile-stat-card {
    min-height: 106px;
    padding: 10px 9px;
  }
  .profile-stat-value {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .profile-description-card {
    padding: 16px 18px;
  }
  .profile-stats-grid {
    gap: 12px;
  }
  .profile-stat-card {
    min-height: 118px;
  }
}

/* ============================================
   TRUST RING — Compact (inside info box)
   ============================================ */
.trust-ring-compact {
  position: relative;
  width: 40px; height: 40px;
  flex-shrink: 0;
}
.trust-ring-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.trust-ring-bg {
  fill: none;
  stroke: #E8E8E8;
  stroke-width: 3;
}
.trust-ring-fill {
  fill: none;
  stroke: var(--wine);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 600ms ease;
}
.trust-ring-pct {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================================
   TRUST RING — Large (inside modal)
   ============================================ */
.trust-ring-large {
  position: relative;
  width: 88px; height: 88px;
  flex-shrink: 0;
}
.trust-ring-svg-lg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.trust-ring-bg-lg {
  fill: none;
  stroke: #E8E8E8;
  stroke-width: 2.5;
}
.trust-ring-fill-lg {
  fill: none;
  stroke: var(--wine);
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dasharray 800ms ease;
}
.trust-ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1px;
}

/* ============================================
   TRUST MODAL
   ============================================ */
.trust-modal {
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

/* Trust checklist rows */
.trust-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.trust-check-row:last-child { border-bottom: none; }
.trust-check-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================
   LOCATION MODAL (Profile page)
   ============================================ */
.location-modal {
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.location-modal-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.location-modal-section {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fbf8f9;
}
.location-modal-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 4px;
}
.location-modal-value {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
}

/* ============================================
   PRICING MODAL (Profile page)
   ============================================ */
.pricing-modal {
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.pricing-modal-table {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  background: #fbf8f9;
}
.pricing-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pricing-modal-row:last-child { border-bottom: none; }
.pricing-modal-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}
.pricing-modal-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 800;
}

/* ============================================
   STICKY CTA (Profile page)
   ============================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 8px 0;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}
.sticky-cta .container {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  gap: 0.5rem;
}
.sticky-cta .btn-whatsapp,
.sticky-cta .btn-telegram {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 14px;
  padding-right: 14px;
}
@media (min-width: 768px) {
  .sticky-cta {
    bottom: 0;
    padding: 10px 0;
  }
  .sticky-cta .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .sticky-cta .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ============================================
   FULL GALLERY GRID (Profile page)
   ============================================ */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (min-width: 640px) {
  .full-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 5px; }
}
@media (min-width: 1024px) {
  .full-gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
}
.full-gallery-thumb {
  position: relative;
  aspect-ratio: 15/16;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #f0f0f0;
}
.full-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}
.full-gallery-thumb:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}
.full-gallery-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(139,26,74,0.0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 250ms ease, background 250ms ease;
}
.full-gallery-thumb:hover .full-gallery-thumb-overlay {
  opacity: 1;
  background: rgba(139,26,74,0.25);
}

/* ============================================
   FULLSCREEN LIGHTBOX (Profile page)
   ============================================ */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 9010;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 200ms;
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-counter {
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 9010;
  color: rgba(255,255,255,0.7);
  font-size: 13px; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.05em;
}

.lightbox-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 16px 80px;
  cursor: pointer;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  cursor: default;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 9010;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.lightbox-arrow:hover {
  background: rgba(139,26,74,0.55);
  border-color: rgba(139,26,74,0.5);
}
.lightbox-arrow-left { left: 12px; }
.lightbox-arrow-right { right: 12px; }

@media (max-width: 640px) {
  .lightbox-arrow { width: 38px; height: 38px; }
  .lightbox-arrow-left { left: 6px; }
  .lightbox-arrow-right { right: 6px; }
  .lightbox-arrow svg { width: 22px; height: 22px; }
}

/* Bottom thumbnail strip */
.lightbox-thumbstrip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 9010;
  display: flex;
  gap: 4px;
  padding: 10px 16px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  justify-content: center;
}
.lightbox-thumbstrip::-webkit-scrollbar { display: none; }

.lightbox-thumb {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 200ms, border-color 200ms, transform 200ms;
  background: none;
  padding: 0;
}
.lightbox-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.lightbox-thumb:hover {
  opacity: 0.85;
}
.lightbox-thumb-active {
  opacity: 1;
  border-color: var(--wine);
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .lightbox-thumbstrip {
    justify-content: flex-start;
    padding: 8px 12px 12px;
  }
  .lightbox-thumb { width: 40px; height: 40px; }
}

/* ============================================
   STATS STRIP — Trust signals (homepage)
   WP Equivalent: template-parts/stats-strip.php
   ============================================ */
.stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 8px 16px 14px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 4px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}
.stat-item + .stat-item {
  border-left: 1px solid var(--border-color);
}
.stat-item strong {
  color: var(--text);
  font-weight: 700;
}

/* ============================================
   BADGE NOVA — New profile indicator (card normal)
   WP Equivalent: post_date < 7 days → badge "Nova"
   ============================================ */
.badge-nova {
  position: absolute;
  top: 7px;
  left: 7px;
  background: var(--wine);
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.5;
  z-index: 2;
}
