/*
Theme Name: CampervanDeal
Description: Modern campervan rental comparison website theme with mobile-first design, booking system, and customizable sections.
Version: 1.0.0
Author: CampervanDeal Team
Text Domain: campervan-deal
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Import the converted CSS from globals.css */
@custom-variant dark (&:is(.dark *));

:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: oklch(0.145 0 0);
  --card: #ffffff;
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: #030213;
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.95 0.0058 264.53);
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: oklch(0.708 0 0);
  --brand-color: #8730fa;
  --radius: 0.625rem;
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
}

/* WordPress Core Styles */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
}

/* Prevent any modal/overlay issues on page load */
body:not(.modal-open):not(.mobile-menu-open) {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Promotional Banner */
.promo-banner {
  background: var(--brand-color);
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
  z-index: 200;
}

.promo-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.promo-text {
  color: white;
  font-weight: 500;
  margin: 0;
}

.mobile-text {
  display: none;
}

@media (max-width: 640px) {
  .desktop-text {
    display: none;
  }
  
  .mobile-text {
    display: inline;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--foreground);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  background: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 150;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo .logo-link {
  text-decoration: none;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--brand-color);
  margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--foreground);
  margin: 2px 0;
  transition: 0.3s;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.currency-selector select,
.language-selector select {
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
}

.user-account,
.sign-in-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--brand-color);
  color: white;
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: background 0.2s;
}

.user-account:hover,
.sign-in-btn:hover {
  background: #7429e8;
  color: white;
}

/* Mobile Navigation */
.mobile-navigation {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: var(--background);
  z-index: 180;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-navigation.active {
  left: 0;
}

.mobile-nav-content {
  padding: 6rem 2rem 2rem;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  margin-bottom: 1rem;
}

.mobile-nav-menu a,
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav-menu a:hover,
.mobile-nav-item:hover {
  background: var(--accent);
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Navigation */
.main-navigation {
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: color 0.2s;
}

.main-navigation a:hover {
  color: var(--brand-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--brand-color);
  color: white;
}

.btn-primary:hover {
  background: #7429e8;
  color: white;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--accent);
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
}

.card-content {
  color: var(--muted-foreground);
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: 1fr;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grid */
@media (max-width: 768px) {
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .main-navigation {
    display: none;
  }
}

/* Homepage Styles */
.main-content {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--brand-color) 0%,
    #7429e8 100%
  );
  color: white;
  padding: 4rem 0;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-overlay {
  /* Remove the overlay that might be causing modal appearance */
  /* position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 1; */
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Search Form Container */
.search-form-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  margin: 0 auto;
}

.campervan-search-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.search-field {
  display: flex;
  flex-direction: column;
}

.search-field label {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.search-field input,
.search-field select {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  min-height: 44px;
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px rgba(135, 48, 250, 0.1);
}

.search-btn {
  background: var(--brand-color);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.search-btn:hover {
  background: #7429e8;
  transform: translateY(-1px);
}

/* Search Bar */
.search-bar {
  background: white;
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.form-input {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  font-size: 1rem;
  background: var(--input-background);
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px rgba(135, 48, 250, 0.1);
}

/* Deal Categories Section */
.deal-categories-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.deal-categories-section h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
}

.deal-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.deal-category-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--foreground);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.deal-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  color: var(--foreground);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.deal-category-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: inherit;
}

/* Featured Deals Section */
.featured-deals-section {
  padding: 4rem 0;
  background: white;
}

.featured-deals-section h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.why-choose-section h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

.feature-card p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Deal Cards */
.deal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.deal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.deal-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.deal-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #10b981;
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.deal-content {
  padding: 1.5rem;
}

.deal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.deal-location {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.deal-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.rating-score {
  font-weight: 600;
  color: #10b981;
}

.rating-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.deal-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-color);
}

.original-price {
  text-decoration: line-through;
  color: var(--muted-foreground);
  font-size: 1rem;
}

.deal-route {
  color: #4a5568;
  font-size: 0.875rem;
  margin: 0;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

.badge-primary {
  background: var(--brand-color);
  color: white;
}

.badge-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.badge-success {
  background: #10b981;
  color: white;
}

/* ==========================================
   COMPREHENSIVE FOOTER STYLES
   ========================================== */

/* Main Footer Container */
.site-footer {
  background: #1a202c;
  color: #e2e8f0;
  margin-top: 4rem;
  position: relative;
  z-index: 10;
}

/* Footer Main Content */
.footer-main {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid #2d3748;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-color);
  margin: 0;
}

.footer-description {
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: var(--brand-color);
}

.footer-contact-icon {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

/* Footer Newsletter */
.footer-newsletter {
  background: #2d3748;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.footer-newsletter p {
  color: #a0aec0;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #4a5568;
  border-radius: 0.375rem;
  background: #1a202c;
  color: white;
  font-size: 0.875rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--brand-color);
  box-shadow: 0 0 0 3px rgba(135, 48, 250, 0.1);
}

.newsletter-btn {
  background: var(--brand-color);
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #7429e8;
}

/* Footer Sections */
.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h3:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--brand-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section li {
  margin: 0;
}

.footer-section a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section a:hover {
  color: var(--brand-color);
  transform: translateX(4px);
}

/* Social Media Links */
.footer-social {
  margin-top: 2rem;
}

.footer-social h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2d3748;
  color: #a0aec0;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-size: 1.125rem;
}

.social-link:hover {
  background: var(--brand-color);
  color: white;
  transform: translateY(-2px);
}

/* Trust Badges */
.footer-trust {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #2d3748;
  border-radius: 0.75rem;
}

.footer-trust h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-badge {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  color: #2d3748;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Footer Bottom */
.footer-bottom {
  padding: 2rem 0;
  background: #171923;
  border-top: 1px solid #2d3748;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #718096;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-legal a {
  color: #718096;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--brand-color);
}

/* Payment Methods */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-method {
  background: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #2d3748;
  font-weight: 600;
}

/* Footer Utilities */
.footer-divider {
  height: 1px;
  background: #2d3748;
  margin: 2rem 0;
}

.footer-highlight {
  background: linear-gradient(135deg, var(--brand-color) 0%, #9d46ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-description {
    max-width: none;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .trust-badges {
    justify-content: center;
  }
  
  .payment-methods {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-btn {
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 2rem 0 1.5rem;
  }
  
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-section a {
    font-size: 0.875rem;
  }
  
  .footer-newsletter,
  .footer-trust {
    padding: 1rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* Animation for footer elements */
.footer-section {
  animation: fadeInUp 0.6s ease-out both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }
.footer-section:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dark mode adjustments */
.dark .site-footer {
  background: #0f1419;
}

.dark .footer-main {
  border-bottom-color: #1a202c;
}

.dark .footer-newsletter,
.dark .footer-trust {
  background: #1a202c;
}

.dark .newsletter-input {
  background: #0f1419;
  border-color: #2d3748;
}

.dark .footer-bottom {
  background: #0a0e13;
  border-top-color: #1a202c;
}

/* Accessibility enhancements */
.footer-section a:focus,
.social-link:focus,
.newsletter-input:focus,
.newsletter-btn:focus {
  outline: 2px solid var(--brand-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .site-footer {
    background: white !important;
    color: black !important;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
  
  .footer-newsletter,
  .footer-trust,
  .social-links {
    display: none;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-navigation {
    display: none;
  }
  
  .header-actions {
    gap: 0.5rem;
  }
  
  .currency-selector,
  .language-selector {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  .search-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .search-form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .deal-categories-grid,
  .deals-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .container,
  .container-narrow {
    padding: 0 1rem;
  }

  .card {
    padding: 1rem;
  }

  .btn {
    min-height: 44px;
    font-size: 1rem;
  }

  .form-input {
    min-height: 44px;
    font-size: 1rem;
  }
  
  .hero-section {
    padding: 2rem 0;
    min-height: 60vh;
  }
  
  .deal-categories-section,
  .featured-deals-section,
  .why-choose-section {
    padding: 2rem 0;
  }
  
  .deal-categories-section h2,
  .featured-deals-section h2,
  .why-choose-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}

/* WordPress Specific */
.wp-block-image img {
  height: auto;
  max-width: 100%;
}

.aligncenter {
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

/* Customizer Sections */
.customizer-section {
  margin: 2rem 0;
  padding: 2rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  position: relative;
}

.customizer-section:hover {
  border-color: var(--brand-color);
}

.customizer-label {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: var(--background);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--brand-color);
  font-weight: var(--font-weight-medium);
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  border-top-color: var(--brand-color);
  animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}

.p-2 {
  padding: 0.5rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}

.hidden {
  display: none;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}

.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}

.rounded {
  border-radius: var(--radius);
}
.rounded-lg {
  border-radius: calc(var(--radius) + 2px);
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   ITINERARY DETAIL PAGE STYLES
   ========================================== */

/* Hero Section */
.itinerary-hero {
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  align-items: end;
  padding: 2rem 0;
}

.hero-content {
  color: white;
  max-width: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 2rem;
  max-width: 400px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Quick Actions */
.quick-actions {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  position: sticky;
  top: 122px; /* Header height + promo banner */
  z-index: 30;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.action-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  text-decoration: none;
}

.action-btn.primary {
  background: var(--brand-color);
  color: white;
}

.action-btn.primary:hover {
  background: #7429e8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(135, 48, 250, 0.3);
  color: white;
}

.action-btn.secondary {
  background: white;
  color: #4a5568;
  border: 1px solid var(--border);
}

.action-btn.secondary:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
  color: #4a5568;
}

/* Content Section */
.content-section {
  padding: 2rem 0;
  background: #f9fafb;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}

.main-content {
  min-width: 0; /* Prevents grid overflow */
}

.content-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

.content-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
}

.content-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #4a5568;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 2rem;
}

/* Overview Section */
.overview-highlights {
  margin: 2rem 0;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.highlights-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: #f7fafc;
  border-radius: 0.5rem;
  border-left: 4px solid var(--brand-color);
}

.best-time {
  margin: 2rem 0;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.season-card {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.season-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.season-card.recommended {
  background: linear-gradient(135deg, var(--brand-color) 0%, #9d46ff 100%);
  color: white;
  border-color: var(--brand-color);
}

.season-card h4 {
  margin-bottom: 0.5rem;
  color: inherit;
}

.season-card p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.season-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #10b981;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.day-card {
  background: #f9fafb;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.day-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.day-header {
  background: linear-gradient(135deg, var(--brand-color) 0%, #9d46ff 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.day-number {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.875rem;
  min-width: 60px;
  text-align: center;
}

.day-header h3 {
  flex: 1;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.day-distance {
  font-size: 0.875rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
}

.day-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem;
}

.day-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.day-details h4 {
  color: var(--brand-color);
  margin: 1.5rem 0 0.75rem 0;
}

.stops-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.stops-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.stops-list li:last-child {
  border-bottom: none;
}

.day-practical {
  background: #f0f7ff;
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid #3b82f6;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Packing Section */
.packing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.packing-category h3 {
  background: var(--brand-color);
  color: white;
  padding: 1rem;
  margin: -2rem -2rem 1.5rem -2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.packing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.packing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  padding-left: 1.5rem;
}

.packing-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.packing-list li:last-child {
  border-bottom: none;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.info-icon {
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.info-item strong {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.25rem;
}

.info-item p {
  font-size: 0.875rem;
  color: #4a5568;
  margin: 0;
}

/* Weather */
.current-weather {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f0f7ff;
  border-radius: 0.75rem;
}

.weather-icon {
  font-size: 2rem;
}

.weather-forecast {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.forecast-day {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

.forecast-day:last-child {
  border-bottom: none;
}

/* Contact Options */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #4a5568;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-btn:hover {
  background: #edf2f7;
  border-color: var(--brand-color);
  color: var(--brand-color);
}

/* Share Buttons */
.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.share-btn {
  aspect-ratio: 1;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f7fafc;
  color: #4a5568;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook:hover { background: #1877f2; color: white; }
.share-btn.twitter:hover { background: #1da1f2; color: white; }
.share-btn.email:hover { background: #34d399; color: white; }
.share-btn.link:hover { background: var(--brand-color); color: white; }

/* Recommended Vehicles */
.recommended-vehicles {
  background: white;
  padding: 4rem 0;
}

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
}

.section-header p {
  font-size: 1.125rem;
  color: #4a5568;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vehicle-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

.vehicle-card:hover .card-image {
  transform: scale(1.05);
}

.vehicle-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge {
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.badge.hot {
  background: rgba(239, 68, 68, 0.9);
  color: white;
}

.badge.discount {
  background: rgba(16, 185, 129, 0.9);
  color: white;
}

.badge.new {
  background: rgba(135, 48, 250, 0.9);
  color: white;
}

.badge.luxury {
  background: rgba(251, 191, 36, 0.9);
  color: white;
}

.vehicle-content {
  padding: 1.5rem;
}

.vehicle-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.vehicle-company {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature {
  background: #f3f4f6;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  color: #374151;
}

.vehicle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-color);
}

.original-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.price-period {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.book-btn {
  width: 100%;
  background: var(--brand-color);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.book-btn:hover {
  background: #7429e8;
  transform: translateY(-1px);
  color: white;
}

.view-all-section {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 1rem;
}

.view-all-btn {
  display: inline-block;
  background: var(--brand-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  background: #7429e8;
  transform: translateY(-2px);
  color: white;
}

/* Related Itineraries */
.related-itineraries {
  background: #f9fafb;
  padding: 4rem 0;
}

.related-itineraries h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a202c;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.related-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-content {
  padding: 1.5rem;
  position: relative;
}

.related-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a202c;
}

.related-content p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.related-duration {
  position: absolute;
  top: -2rem;
  right: 1rem;
  background: var(--brand-color);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .actions-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .action-btn {
    padding: 1rem;
    font-size: 1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .content-card {
    padding: 1.5rem;
  }
  
  .day-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .day-image {
    height: 160px;
  }
  
  .day-header {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .day-header h3 {
    font-size: 1.125rem;
  }
  
  .packing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-grid {
    gap: 0.75rem;
  }
  
  .share-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  /* Mobile quick actions */
  .quick-actions {
    top: 96px; /* Adjusted for mobile header */
  }
  
  /* Mobile hero adjustments */
  .hero-image-container {
    height: 50vh;
    min-height: 300px;
  }
  
  .hero-badges {
    gap: 0.375rem;
  }
  
  .hero-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }
  
  /* Mobile sidebar becomes full width */
  .sidebar {
    order: -1; /* Move sidebar above main content on mobile */
  }
}

@media (min-width: 641px) and (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .day-content {
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
  }
  
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
  }
  
  .day-content {
    grid-template-columns: 280px 1fr;
  }
}