/* PressUp Eats — Wherevi-inspired theme */
:root {
  --wv-primary: #d35400;
  --wv-primary-hover: #b94700;
  --wv-primary-dark: #7c3000;
  --wv-primary-light: #fff5eb;
  --wv-accent: #1a7a5c;
  --wv-accent-hover: #15654b;
  --wv-accent-light: #ecfdf5;
  --wv-star: #f59e0b;
  --wv-dark: #1c1917;
  --wv-text: #44403c;
  --wv-text-light: #78716c;
  --wv-text-muted: #a8a29e;
  --wv-border: #e7e5e4;
  --wv-border-light: #f5f5f4;
  --wv-bg: #ffffff;
  --wv-bg-alt: #fafaf9;
  --wv-bg-warm: #f5f0e8;
  --wv-shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.06);
  --wv-shadow: 0 4px 12px rgba(28, 25, 23, 0.08);
  --wv-shadow-md: 0 8px 24px rgba(28, 25, 23, 0.1);
  --wv-shadow-lg: 0 16px 40px rgba(28, 25, 23, 0.12);
  --wv-shadow-primary: 0 8px 24px rgba(211, 84, 0, 0.2);
  --wv-radius-sm: 8px;
  --wv-radius: 12px;
  --wv-radius-lg: 16px;
  --wv-radius-xl: 24px;
  --wv-radius-pill: 9999px;
  --wv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --wv-header-h: 72px;
  --wv-section-py: 5rem;
}

@media (max-width: 991.98px) {
  :root {
    --wv-header-h: 64px;
    --wv-section-py: 3.5rem;
  }
}

body.wv-body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--wv-text);
  background: var(--wv-bg);
  padding-top: 0;
}

/* Interior pages without full hero */
body.wv-body .about-page,
body.wv-body .legal-page,
body.wv-body .marketing-page {
  padding-top: calc(var(--wv-header-h) + 2rem);
}

body.wv-search-page .wv-search-hero {
  padding-top: calc(var(--wv-header-h) + 2.5rem);
}

body.wv-body h1,
body.wv-body h2,
body.wv-body .wv-section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--wv-dark);
  font-weight: 400;
}

.wv-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-padding {
  padding: var(--wv-section-py) 0;
}

.bg-warm { background: var(--wv-bg-warm); }
.bg-alt { background: var(--wv-bg-alt); }

/* Buttons */
.btn-wv-primary {
  background: var(--wv-primary);
  color: #fff;
  border: 2px solid var(--wv-primary);
  border-radius: var(--wv-radius-pill);
  padding: 0.625rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--wv-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-wv-primary:hover {
  background: var(--wv-primary-hover);
  border-color: var(--wv-primary-hover);
  color: #fff;
  box-shadow: var(--wv-shadow-primary);
  transform: translateY(-1px);
}

.btn-wv-outline {
  background: transparent;
  color: var(--wv-primary);
  border: 2px solid var(--wv-primary);
  border-radius: var(--wv-radius-pill);
  padding: 0.625rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--wv-transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-wv-outline:hover {
  background: var(--wv-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-wv-primary.btn-sm,
.btn-wv-outline.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-wv-primary.btn-lg,
.btn-wv-outline.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

/* Header */
.wv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  height: var(--wv-header-h);
  display: flex;
  align-items: center;
  transition: var(--wv-transition);
  background: transparent;
}

.wv-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--wv-shadow-sm);
}

.wv-header .wv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.wv-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wv-logo img {
  height: 32px;
  width: auto;
}

.wv-logo .logo-light {
  display: none;
  filter: brightness(0) invert(1);
}

.wv-header.transparent .wv-logo .logo-dark { display: none; }
.wv-header.transparent .wv-logo .logo-light { display: block; }
.wv-header.transparent.scrolled .wv-logo .logo-dark { display: block; }
.wv-header.transparent.scrolled .wv-logo .logo-light { display: none; }

.wv-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wv-nav > li > a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--wv-text);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
}

.wv-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wv-primary);
  transition: 0.2s ease;
}

.wv-nav > li > a:hover::after,
.wv-nav > li > a.active::after { width: 100%; }
.wv-nav > li > a:hover,
.wv-nav > li > a.active { color: var(--wv-primary); }

.wv-header.transparent .wv-nav > li > a { color: #fff; }
.wv-header.transparent.scrolled .wv-nav > li > a { color: var(--wv-text); }

.wv-header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wv-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--wv-dark);
  cursor: pointer;
}

.wv-header.transparent .wv-nav-toggle { color: #fff; }
.wv-header.transparent.scrolled .wv-nav-toggle { color: var(--wv-dark); }

@media (max-width: 991.98px) {
  .wv-nav-desktop { display: none !important; }
  .wv-nav-toggle { display: block; }
}

.wv-offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wv-offcanvas-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--wv-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--wv-border-light);
}

/* Hero */
.wv-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: calc(var(--wv-header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.wv-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.wv-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.75) 0%, rgba(28, 25, 23, 0.35) 100%);
}

.wv-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.wv-hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.wv-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.wv-hero-search {
  background: #fff;
  border-radius: var(--wv-radius-lg);
  padding: 0.5rem;
  box-shadow: var(--wv-shadow-lg);
  max-width: 720px;
}

.wv-hero-search .form-control {
  border: none;
  background: transparent;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  box-shadow: none !important;
}

.wv-hero-search .input-divider {
  width: 1px;
  background: var(--wv-border);
  align-self: stretch;
  margin: 0.5rem 0;
}

.wv-hero-search .btn-search {
  background: var(--wv-primary);
  color: #fff;
  border: none;
  border-radius: var(--wv-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: var(--wv-transition);
}

.wv-hero-search .btn-search:hover {
  background: var(--wv-primary-hover);
}

.wv-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.wv-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--wv-radius-pill);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  text-decoration: none;
  transition: 0.2s ease;
}

.wv-hero-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Stat strip */
.wv-stat-strip {
  background: var(--wv-bg);
  border-bottom: 1px solid var(--wv-border-light);
  padding: 2rem 0;
}

.wv-stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--wv-dark);
  display: block;
  line-height: 1.2;
}

.wv-stat-label {
  font-size: 0.8125rem;
  color: var(--wv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* Section headers */
.wv-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wv-primary);
  margin-bottom: 0.75rem;
}

.wv-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.625rem;
}

.wv-section-subtitle {
  color: var(--wv-text-light);
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.6;
}

.wv-section-header {
  margin-bottom: 2.5rem;
}

.wv-section-header.text-center .wv-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Category cards */
.wv-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--wv-border-light);
  border-radius: var(--wv-radius-lg);
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: var(--wv-transition);
}

.wv-cat-card:hover {
  box-shadow: var(--wv-shadow-md);
  transform: translateY(-4px);
  color: inherit;
}

.wv-cat-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--wv-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.875rem;
}

.wv-cat-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--wv-dark);
  margin-bottom: 0.25rem;
}

.wv-cat-count {
  font-size: 0.8125rem;
  color: var(--wv-text-muted);
}

/* Place cards */
.wv-place-card {
  background: #fff;
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
  border: 1px solid var(--wv-border-light);
  height: 100%;
  transition: var(--wv-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.wv-place-card:hover {
  box-shadow: var(--wv-shadow-md);
  transform: translateY(-4px);
  color: inherit;
}

.wv-place-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--wv-bg-warm);
}

.wv-place-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.wv-place-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.wv-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: var(--wv-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.wv-badge-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--wv-dark);
}

.wv-badge-primary {
  background: var(--wv-primary);
  color: #fff;
}

.wv-place-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.wv-place-card-title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.375rem;
  color: var(--wv-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wv-place-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--wv-text-light);
  margin-bottom: 0.375rem;
}

.wv-place-card-meta .wv-stars {
  color: var(--wv-star);
}

.wv-place-card-address {
  font-size: 0.8125rem;
  color: var(--wv-text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Destination cards */
.wv-dest-card {
  position: relative;
  border-radius: var(--wv-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
}

.wv-dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.wv-dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.wv-dest-card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.wv-dest-card-count {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Trust cards */
.wv-trust-card {
  padding: 1.75rem;
  border-radius: var(--wv-radius-lg);
  border: 1px solid var(--wv-border-light);
  height: 100%;
  transition: var(--wv-transition);
}

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

.wv-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--wv-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.wv-trust-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wv-trust-card p {
  font-size: 0.9375rem;
  color: var(--wv-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Feature cards */
.wv-feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  height: 100%;
}

.wv-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--wv-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  transition: var(--wv-transition);
}

.wv-feature-icon.primary { background: var(--wv-primary-light); color: var(--wv-primary); }
.wv-feature-icon.accent { background: var(--wv-accent-light); color: var(--wv-accent); }
.wv-feature-icon.warm { background: var(--wv-bg-warm); color: var(--wv-primary-dark); }

.wv-feature-card:hover .wv-feature-icon.primary { background: var(--wv-primary); color: #fff; }
.wv-feature-card:hover .wv-feature-icon.accent { background: var(--wv-accent); color: #fff; }

.wv-feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.wv-feature-card p {
  font-size: 0.9375rem;
  color: var(--wv-text-light);
  margin: 0;
}

/* Activity / review feed */
.wv-activity-card {
  background: #fff;
  border: 1px solid var(--wv-border-light);
  border-radius: var(--wv-radius-lg);
  padding: 1.25rem;
  height: 100%;
}

.wv-activity-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wv-activity-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wv-primary-light);
  color: var(--wv-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.wv-activity-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--wv-dark);
}

.wv-activity-venue {
  font-size: 0.8125rem;
  color: var(--wv-primary);
}

.wv-activity-text {
  font-size: 0.9375rem;
  color: var(--wv-text);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wv-activity-time {
  font-size: 0.75rem;
  color: var(--wv-text-muted);
}

/* CTA */
.wv-cta {
  background: linear-gradient(135deg, var(--wv-primary-dark) 0%, var(--wv-primary) 100%);
  color: #fff;
}

.wv-cta .btn-wv-outline,
.wv-cta .wv-cta-outline {
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.wv-cta .btn-wv-outline:hover,
.wv-cta .wv-cta-outline:hover {
  background: #fff;
  color: var(--wv-primary);
  border-color: #fff;
}

/* Search page — solid header */
body.wv-search-page .wv-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--wv-shadow-sm);
}

body.wv-search-page .wv-header .wv-logo .logo-dark { display: block; }
body.wv-search-page .wv-header .wv-logo .logo-light { display: none; }
body.wv-search-page .wv-header .wv-nav > li > a { color: var(--wv-text); }
.wv-cta .wv-section-label { color: rgba(255, 255, 255, 0.85); }
.wv-cta .wv-section-title { color: #fff; }
.wv-cta p { color: rgba(255, 255, 255, 0.85); }

.wv-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Footer */
.wv-footer {
  background: var(--wv-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.wv-footer h5 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.wv-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.wv-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wv-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  display: block;
  padding: 0.35rem 0;
  transition: 0.2s ease;
}

.wv-footer-links a:hover { color: #fff; }

.wv-footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.wv-footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
}

.wv-footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
}

.wv-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.wv-footer-bottom-links a:hover { color: #fff; }

.wv-footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--wv-radius-pill);
  padding: 0.625rem 1rem;
}

.wv-footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

/* Search page */
.wv-search-page .wv-search-hero {
  padding: calc(var(--wv-header-h) + 2.5rem) 0 2rem;
  background: var(--wv-bg-warm);
  border-bottom: 1px solid var(--wv-border-light);
}

.wv-search-page .wv-hero-search {
  box-shadow: var(--wv-shadow);
}

.wv-search-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: var(--wv-radius-xl);
  border: 1px solid var(--wv-border-light);
}

/* Hide old fp promobar on wherevi theme */
body.wv-body .fp-promobar { display: none !important; }

/* Pagination */
.wv-pagination .pagination {
  justify-content: center;
  gap: 0.25rem;
}

.wv-pagination .page-link {
  border-radius: var(--wv-radius-sm);
  border-color: var(--wv-border);
  color: var(--wv-primary);
  font-weight: 600;
}

.wv-pagination .page-item.active .page-link {
  background: var(--wv-primary);
  border-color: var(--wv-primary);
}

@media (max-width: 767.98px) {
  .wv-hero { min-height: 520px; }
  .wv-hero-search .input-divider { display: none !important; }
}
