/*
Theme Name: Bouncy Rentals USA
Theme URI: https://bouncyrentalsusa.com
Author: Bouncy Rentals USA
Author URI: https://bouncyrentalsusa.com
Description: Custom WordPress theme for Bouncy Rentals USA — Charleston, SC's premier bounce house and event rental company. Mobile-first, conversion-focused, with GoodShuffle integration support.
Version: 1.0.19
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary — All rights reserved.
Text Domain: bouncy-rentals-usa
Tags: small-business, custom-colors, custom-menu, featured-images, full-width-template, theme-options, threaded-comments
*/

:root {
  --sky: #4DB8E8;
  --sky-light: #B8E2F2;
  --sky-lighter: #E8F4FA;
  --sunshine: #FFD747;
  --gold: #D4AF6A;
  --red: #E8434C;
  --red-deep: #C8102E;
  --navy: #0A1628;
  --navy-soft: #1B2D4D;
  --cream: #FFF9EC;
  --white: #FFFFFF;
  --charcoal: #2A2A2A;
  --text-soft: #5C6B82;
  --green: #4CC38A;
  --orange: #FF9D5C;
  --shadow-soft: 0 8px 24px rgba(77, 184, 232, 0.18);
  --shadow-card: 0 12px 32px rgba(10, 22, 40, 0.08);
  --shadow-pop: 0 16px 48px rgba(232, 67, 76, 0.25);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, .display { font-family: 'Fredoka', sans-serif; font-weight: 700; line-height: 1.05; color: var(--navy); letter-spacing: -0.02em; }
h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--navy); line-height: 1.2; }
.serif { font-family: 'Playfair Display', serif; font-style: italic; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--navy);
  color: var(--white);
  padding: 8px 20px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 500;
}
.top-strip strong { color: var(--sunshine); font-weight: 700; }
.top-strip .sep { color: rgba(255,255,255,0.6); margin: 0 10px; }
.top-strip a { color: var(--sunshine); border-bottom: 1px solid rgba(255,215,71,0.5); }

/* On phones, hide the location label and the separator — just show the
   tap-to-call phone number so the bar fits on one line. */
@media (max-width: 640px) {
  .top-strip-location, .top-strip .sep { display: none; }
  .top-strip { padding: 6px 16px; font-size: 0.8rem; }
}

/* ============ NAV ============ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(10,22,40,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text {
  display: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}
.nav-logo-text small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--sky);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-menu li { list-style: none; }
.nav-menu a {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-menu a:hover { color: var(--sky); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-phone {
  display: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.93rem;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.nav-phone svg { color: var(--red); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-pop);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); color: var(--white); }
.btn-sky {
  background: var(--sky);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(77, 184, 232, 0.4);
}
.btn-sky:hover { transform: translateY(-2px) scale(1.02); background: #3AA8DD; color: var(--white); }
.btn-yellow {
  background: var(--sunshine);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(255, 215, 71, 0.4);
}
.btn-yellow:hover { transform: translateY(-2px) scale(1.02); color: var(--navy); }
.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-large { padding: 18px 36px; font-size: 1.05rem; }

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  z-index: 200;
  padding: 80px 28px 32px;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(10,22,40,0.15);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }

/* When the fallback nav menu (bouncy_default_menu) renders inside the
   mobile drawer, it uses class="nav-menu" — but that class has
   display:none below 960px for the desktop nav. Override here so the
   menu items are visible when nested in the mobile drawer. */
.mobile-menu .nav-menu,
.mobile-menu ul {
  display: block !important;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li { margin-bottom: 4px; list-style: none; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  font-family: 'Fredoka', sans-serif;
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--sky); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--navy);
  font-size: 1.5rem; cursor: pointer;
}
.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  z-index: 150;
  backdrop-filter: blur(4px);
}
.menu-overlay.active { display: block; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sky-lighter) 0%, var(--white) 100%);
  padding: 50px 0 80px;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
  z-index: 0;
}
.hero::before {
  width: 280px; height: 280px;
  background: var(--sunshine);
  top: -80px; right: -80px;
  opacity: 0.35;
}
.hero::after {
  width: 200px; height: 200px;
  background: var(--sky);
  bottom: -60px; left: -60px;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 2px solid var(--sunshine);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 215, 71, 0.25);
}
.hero-badge::before {
  content: '★';
  color: var(--red);
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin-bottom: 20px;
}
.hero h1 .pop {
  display: inline-block;
  color: var(--red);
  position: relative;
}
.hero h1 .pop::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 14px;
  background: var(--sunshine);
  z-index: -1;
  border-radius: 100px;
  opacity: 0.85;
}
.hero-subhead {
  font-size: 1.15rem;
  color: var(--text-soft);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-ctas .btn { width: 100%; }

.hero-quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
}
.hero-quickstat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-quickstat-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-quickstat-label {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  display: flex;
  justify-content: center;
}
.hero-logo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(10, 22, 40, 0.2));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/* Pulsing blue circle behind logo removed for cleaner appearance */

.hero-decoration {
  position: absolute;
  font-size: 2rem;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.hero-deco-1 { top: 10%; right: 8%; animation: float 3.5s ease-in-out infinite; }
.hero-deco-2 { bottom: 15%; left: 5%; animation: float 4.5s ease-in-out infinite 0.5s; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 24px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 16px;
  text-align: center;
}
.trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-pill svg { color: var(--sunshine); flex-shrink: 0; }

/* ============ SECTIONS ============ */
section { padding: 70px 0; position: relative; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.eyebrow {
  display: inline-block;
  background: var(--sky-lighter);
  color: var(--sky);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 16px;
}
.section-header h2 .pop {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ============ AUDIENCE ============ */
.audience-section { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.audience-card {
  background: var(--white);
  border: 2px solid rgba(77,184,232,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
  text-align: center;
}
.audience-card:hover {
  transform: translateY(-6px);
  border-color: var(--sky);
  box-shadow: var(--shadow-card);
}
.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.audience-icon-1 { background: var(--sky-lighter); color: var(--sky); }
.audience-icon-2 { background: #FFF4DB; color: #E8B400; }
.audience-icon-3 { background: #FFE9DC; color: var(--orange); }
.audience-icon-4 { background: #DFF5E8; color: var(--green); }
.audience-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.audience-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.audience-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
}

/* ============ RENTALS ============ */
.rentals-section {
  background: var(--sky-lighter);
  position: relative;
  overflow: hidden;
}
.rentals-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--sunshine);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
}
.rentals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.rental-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.rental-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}
.rental-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rental-image-1 { background: linear-gradient(135deg, #5BC0EB, #B8E2F2); }
.rental-image-2 { background: linear-gradient(135deg, #4CC38A, #B8E8CC); }
.rental-image-3 { background: linear-gradient(135deg, #FFB347, #FFD747); }

/* When a real photo has been uploaded via the Customizer, the inline
   style sets background-image. Override the gradient and make the photo
   fill the card image area cleanly. */
.rental-image.has-photo {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  /* keep linear-gradient as a subtle bottom shade so the white tag text
     stays readable if it overlaps a bright spot in the photo */
}
.rental-image.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.rental-image-placeholder {
  font-family: 'Fredoka', sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  text-align: center;
  padding: 20px;
  opacity: 0.85;
  font-weight: 600;
}
.rental-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 4px 12px rgba(232, 67, 76, 0.4);
  z-index: 2;
}
.rental-body { padding: 24px; }
.rental-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.rental-body p {
  color: var(--text-soft);
  font-size: 0.94rem;
  margin-bottom: 18px;
}
.rental-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.rental-features span {
  background: var(--sky-lighter);
  color: var(--sky);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
}

.rentals-cta-banner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 3px dashed var(--sky);
  position: relative;
  z-index: 1;
}
.rentals-cta-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.rentals-cta-banner h3 .pop { color: var(--red); }
.rentals-cta-banner p {
  color: var(--text-soft);
  margin-bottom: 22px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.rentals-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.rentals-cta-buttons .btn {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .rentals-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .rentals-cta-buttons .btn {
    width: 100%;
  }
}

/* ============ BOOKING ============ */
.booking-section { background: var(--white); }
.booking-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.booking-wrap::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--sunshine);
  border-radius: 50%;
  top: -150px; left: -150px;
  opacity: 0.3;
  filter: blur(40px);
}
.booking-inner {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  min-height: 400px;
}
.booking-placeholder {
  text-align: center;
  padding: 50px 24px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius);
}
.booking-placeholder svg { color: var(--sky); margin-bottom: 16px; }
.booking-placeholder h4 { font-size: 1.3rem; margin-bottom: 10px; }
.booking-placeholder p {
  color: var(--text-soft);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 12px;
}

/* ============ HOW IT WORKS ============ */
.how-section { background: var(--white); padding: 60px 0; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
.how-step {
  background: var(--sky-lighter);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
.how-step:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.how-step-num {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(232, 67, 76, 0.35);
}
.how-step h4 { font-size: 1.2rem; margin: 16px 0 10px; }
.how-step p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.55; }
.how-step .icon { font-size: 2.5rem; margin-top: 8px; }

/* ============ DIFFERENTIATORS ============ */
.diff-section { background: var(--cream); }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.diff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(10,22,40,0.06);
  transition: all 0.3s;
}
.diff-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.diff-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sky-lighter);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon-2 { background: #FFF4DB; color: #D4A800; }
.diff-icon-3 { background: #FFE9DC; color: var(--orange); }
.diff-icon-4 { background: #FCE8EA; color: var(--red); }
.diff-icon-5 { background: #DFF5E8; color: var(--green); }
.diff-icon-6 { background: #EDE7FF; color: #7B61D9; }
.diff-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.diff-card p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.55; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--sky-lighter);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: var(--shadow-card);
}
.testimonial-stars {
  color: var(--sunshine);
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.testimonial-name {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  font-family: 'Fredoka', sans-serif;
}
.testimonial-meta { color: var(--text-soft); font-size: 0.82rem; margin-top: 2px; }
.testimonial-google {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky-lighter);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sky);
}
.testimonial-google::before {
  content: 'G';
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #4285F4, #DB4437);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: serif;
}
.reviews-cta { text-align: center; margin-top: 40px; }

/* ============ CALENDAR ============ */
.calendar-section { background: linear-gradient(180deg, var(--cream), var(--white)); }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.calendar-month {
  background: var(--white);
  padding: 18px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 2px solid rgba(10,22,40,0.06);
  transition: all 0.3s;
}
.calendar-month:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.calendar-month-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.calendar-bar {
  width: 100%;
  height: 8px;
  background: rgba(10,22,40,0.06);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 10px;
}
.calendar-bar-fill { height: 100%; border-radius: var(--radius-pill); }
.calendar-status {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Fredoka', sans-serif;
}
.fill-low { background: var(--green); }
.fill-med { background: var(--orange); }
.fill-high { background: var(--red); }
.status-low { color: var(--green); }
.status-med { color: var(--orange); }
.status-high { color: var(--red); }

/* ============ DEPOSIT ============ */
.deposit-section { background: var(--white); padding: 60px 0; }
.deposit-card {
  background: linear-gradient(135deg, var(--sky), #6BC8F0);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.deposit-card::before, .deposit-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.deposit-card::before {
  width: 240px; height: 240px;
  background: var(--sunshine);
  opacity: 0.2;
  top: -80px; right: -80px;
}
.deposit-card::after {
  width: 180px; height: 180px;
  background: var(--white);
  opacity: 0.1;
  bottom: -60px; left: -60px;
}
.deposit-card > * { position: relative; z-index: 1; }
.deposit-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.deposit-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  margin-bottom: 14px;
}
.deposit-card h2 .pop { color: var(--sunshine); }
.deposit-card p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 26px;
}
.deposit-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}
.deposit-feature {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============ EMAIL CAPTURE ============ */
.email-section {
  background: var(--sunshine);
  position: relative;
  overflow: hidden;
}
.email-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--white);
  opacity: 0.2;
  border-radius: 50%;
  top: -200px; right: -100px;
}
.email-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
.email-text .eyebrow { background: var(--navy); color: var(--sunshine); }
.email-text h2 {
  color: var(--navy);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  margin-bottom: 14px;
}
.email-text > p {
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 22px;
  opacity: 0.85;
}
.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.email-form input {
  padding: 16px 22px;
  border: 3px solid var(--navy);
  background: var(--white);
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}
.email-form input:focus { outline: none; border-color: var(--red); }
.email-form .btn { background: var(--navy); color: var(--sunshine); }
.email-form .btn:hover { background: var(--charcoal); color: var(--sunshine); }
.email-disclaimer {
  font-size: 0.78rem;
  color: var(--navy);
  opacity: 0.7;
  margin-top: 12px;
}

.email-visual { display: none; text-align: center; }
.email-visual-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 320px;
  margin: 0 auto;
  transform: rotate(-3deg);
  transition: transform 0.3s;
}
.email-visual-card:hover { transform: rotate(0deg); }
.email-visual-card h4 { color: var(--navy); font-size: 1.1rem; margin-bottom: 14px; }
.email-visual-card .month-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(10,22,40,0.08);
  font-size: 0.85rem;
  color: var(--charcoal);
}
.email-visual-card .month-row:last-child { border: none; }
.email-visual-card .month-row strong {
  color: var(--red);
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
}

/* ============ FRANCHISE ============ */
.franchise-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.franchise-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: var(--sunshine);
  opacity: 0.08;
  border-radius: 50%;
  top: -250px; right: -100px;
  filter: blur(40px);
}
.franchise-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
}
.franchise-text .eyebrow { background: rgba(255, 215, 71, 0.15); color: var(--sunshine); }
.franchise-text h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  margin-bottom: 16px;
}
.franchise-text h2 .pop { color: var(--sunshine); }
.franchise-text p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
  border-top: 4px solid var(--sky);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand img { height: 90px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; }
.footer-col h5 {
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; list-style: none; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--sunshine); }

.footer-contact-intro {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--sunshine);
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--sunshine); }

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
}
.location-active { background: rgba(76, 195, 138, 0.15); color: var(--green); }
.location-active::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.location-soon { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.82rem;
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--sunshine); }

/* ============ INNER PAGE / BLOG ============ */
.inner-page {
  padding: 60px 0 80px;
  min-height: 50vh;
}
.inner-hero {
  background: linear-gradient(180deg, var(--sky-lighter), var(--white));
  padding: 50px 0;
  text-align: center;
  border-bottom: 1px solid rgba(10,22,40,0.06);
}
.inner-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.inner-hero p {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto;
}

.entry-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
}
.entry-content h2 {
  font-size: 1.7rem;
  margin: 40px 0 16px;
}
.entry-content h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.entry-content p { margin-bottom: 18px; color: var(--charcoal); }
.entry-content ul, .entry-content ol { margin: 0 0 20px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--sky); border-bottom: 1px solid var(--sky-lighter); }
.entry-content a:hover { border-bottom-color: var(--sky); }
.entry-content img {
  border-radius: var(--radius);
  margin: 24px 0;
}
.entry-content blockquote {
  border-left: 4px solid var(--sunshine);
  padding: 16px 24px;
  background: var(--cream);
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
}

.post-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 24px;
  justify-content: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.12);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--navy); }
.blog-card-body h3 a:hover { color: var(--sky); }
.blog-card-meta {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}
.blog-card-excerpt {
  color: var(--text-soft);
  font-size: 0.94rem;
  margin-bottom: 14px;
}
.blog-card-link {
  font-family: 'Fredoka', sans-serif;
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.pagination .page-numbers {
  padding: 10px 16px;
  background: var(--white);
  border: 2px solid var(--sky-lighter);
  border-radius: var(--radius-pill);
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.pagination .page-numbers:hover { border-color: var(--sky); color: var(--sky); }
.pagination .current {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}

.error-404 {
  text-align: center;
  padding: 80px 20px;
}
.error-404 h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--red);
}
.error-404 p {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin: 20px 0 30px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.search-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.search-form input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid var(--sky-lighter);
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
}
.search-form input:focus { outline: none; border-color: var(--sky); }
.search-form button {
  padding: 12px 24px;
  background: var(--sky);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  cursor: pointer;
}
.search-form button:hover { background: #3AA8DD; }

/* ============ TABLET ============ */
@media (min-width: 640px) {
  .container { padding: 0 32px; }
  section { padding: 90px 0; }

  .hero-ctas { flex-direction: row; }
  .hero-ctas .btn { width: auto; }

  .trust-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .rentals-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .calendar-grid { grid-template-columns: repeat(3, 1fr); }
  .how-grid { grid-template-columns: repeat(3, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .email-form { flex-direction: row; }
  .email-form input { flex: 1; }
}

/* ============ DESKTOP ============ */
@media (min-width: 960px) {
  .nav-logo-text { display: block; }
  .nav-menu { display: flex; }
  .nav-phone { display: inline-flex; }
  .mobile-menu-toggle { display: none; }

  .hero { padding: 70px 0 100px; }
  .hero-content { grid-template-columns: 1.2fr 1fr; gap: 60px; }
  .hero-logo-wrap { max-width: 380px; }

  .audience-grid { grid-template-columns: repeat(4, 1fr); }
  .rentals-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .calendar-grid { grid-template-columns: repeat(6, 1fr); }
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(6, 1fr); }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }

  .email-wrap { grid-template-columns: 1.5fr 1fr; }
  .email-visual { display: block; }

  .franchise-wrap { grid-template-columns: 1.4fr 1fr; gap: 60px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ============ WORDPRESS ALIGNMENT CLASSES ============ */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide, .alignfull { margin: 24px 0; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-soft); margin-top: 8px; text-align: center; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}

/* WordPress comments */
.comments-area { max-width: 720px; margin: 60px auto 0; }
.comment-list { list-style: none; padding: 0; }
.comment-list li { padding: 20px 0; border-bottom: 1px solid var(--sky-lighter); }


/* ============================================================
   GoodShuffle Pro Widget — World-Class Brand Skin v2
   ============================================================
   Conversion-focused redesign. Inventory leads, controls
   are subtle, mobile is genuinely good (not just "doesn't
   break"). Uses gspro-* hooks documented at
   docs.goodshuffle.dev. Some elements live in Shadow DOM
   and may resist styling — that's a vendor limitation.
   ============================================================ */

/* --- Root: typography handoff --- */
:root {
  --gspro-font-family-primary: 'Fredoka', sans-serif !important;
  --gspro-font-family-secondary: 'DM Sans', sans-serif !important;
  --gspro-custom-font-size: 16px;
}

gspro-item-gallery,
gspro-item-list,
gspro-item-card,
gspro-item-detail,
gspro-wishlist {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--charcoal);
}

/* --- Container: tighter padding, no awkward white box-in-yellow-box --- */
.booking-inner gspro-item-gallery {
  display: block;
  padding: 0;
}

/* --- Top control row: search + filters in a single, slim, balanced strip --- */
.gspro-c-item-gallery__search-row,
.gspro-c-item-gallery__top {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-bottom: 28px !important;
  width: 100%;
}

/* Search becomes a constrained, pill-shaped accessory */
.gspro-o-search {
  border: 2px solid var(--sky-light) !important;
  border-radius: var(--radius-pill) !important;
  overflow: hidden !important;
  background: var(--white) !important;
  box-shadow: 0 2px 6px rgba(77, 184, 232, 0.08);
  transition: all 0.2s ease;
  flex: 1 1 280px;
  max-width: 420px;
  min-width: 0;
  display: flex !important;
  align-items: stretch !important;
}

.gspro-o-search:focus-within {
  border-color: var(--sky) !important;
  box-shadow: 0 4px 12px rgba(77, 184, 232, 0.22);
}

.gspro-o-search input {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  padding: 10px 18px !important;
  color: var(--navy) !important;
  background: transparent !important;
  border: none !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: 100% !important;
}

.gspro-o-search input::placeholder {
  color: var(--text-soft) !important;
  font-weight: 400 !important;
}

.gspro-o-search > .gspro-o-button,
.gspro-o-search button {
  background: var(--sky) !important;
  color: var(--white) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 10px 22px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.gspro-o-search > .gspro-o-button:hover,
.gspro-o-search button:hover {
  background: #3aa3d4 !important;
}

/* Categories + Filters buttons: subtle, ghost-style */
.gspro-c-item-gallery__toggle-categories,
.gspro-c-item-gallery__toggle-filters {
  background: transparent !important;
  color: var(--navy) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  padding: 8px 18px !important;
  border: 2px solid var(--sky-lighter) !important;
  border-radius: var(--radius-pill) !important;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gspro-c-item-gallery__toggle-categories:hover,
.gspro-c-item-gallery__toggle-filters:hover {
  background: var(--sky-lighter) !important;
  border-color: var(--sky) !important;
  color: var(--navy) !important;
}

/* --- Category list: cleaner, more clickable --- */
.gspro-o-category {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  padding: 10px 0 !important;
  transition: color 0.15s ease;
  cursor: pointer;
}

.gspro-o-category:hover {
  color: var(--sky) !important;
}

.gspro-o-category[aria-selected="true"],
.gspro-o-category--active {
  color: var(--red) !important;
  font-weight: 600 !important;
}

.gspro-o-category[data-hide-category="true"] {
  display: none !important;
}

.gspro-u-badge {
  background: var(--sky-lighter) !important;
  color: var(--sky) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 2px 8px !important;
  border-radius: var(--radius-pill) !important;
  margin-left: 6px;
}

/* --- Item Cards: warm, polished, photo-forward --- */
gspro-item-card {
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-card) !important;
  border: 1px solid var(--sky-lighter);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  /* Only lift on real desktops, not phones */
  gspro-item-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.15) !important;
    border-color: var(--sky-light);
  }
}

.gspro-c-item-card__image,
gspro-item-card .gspro-o-card__image {
  border-radius: var(--radius) var(--radius) 0 0 !important;
  aspect-ratio: 4/3 !important;
  object-fit: cover !important;
  width: 100% !important;
  background: var(--sky-lighter);
}

gspro-item-card .gspro-o-card__title,
.gspro-c-item-card__title {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  font-size: 17px !important;
  padding: 14px 16px 4px 16px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3 !important;
}

gspro-item-card .gspro-o-card__subtitle,
.gspro-c-item-card__subtitle {
  color: var(--text-soft) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  padding: 0 16px 10px 16px !important;
  line-height: 1.5;
}

/* Prices: visible, branded, readable */
.gspro-o-price,
.gspro-c-item-card__price,
gspro-item-card .gspro-o-price {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  color: var(--red) !important;
  font-size: 16px !important;
  padding: 0 16px 14px 16px !important;
  display: block !important;
}

gspro-item-detail .gspro-c-item-detail__price {
  font-size: 24px !important;
  border: 2px solid var(--red) !important;
  border-radius: var(--radius-pill) !important;
  padding: 8px 20px !important;
  display: inline-block !important;
  font-family: 'Fredoka', sans-serif !important;
  color: var(--red) !important;
  font-weight: 600 !important;
}

/* Add-to-wishlist button on cards — only show on hover (desktop) or
   always-visible on mobile, but smaller & cleaner. The current bug:
   the button stays "hovered" on tap on mobile. Fix: scope hover state. */
gspro-item-card .gspro-o-card__add button,
.gspro-c-item-card__add button {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  padding: 8px 14px !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  cursor: pointer;
  transition: background 0.2s ease;
  box-shadow: 0 4px 12px rgba(232, 67, 76, 0.25);
}

@media (hover: hover) and (pointer: fine) {
  gspro-item-card .gspro-o-card__add button:hover,
  .gspro-c-item-card__add button:hover {
    background: var(--red-deep) !important;
    transform: scale(1.04);
  }
}

.gspro-c-item-card__add use,
gspro-item-card .gspro-o-card__add use {
  fill: var(--white) !important;
}

/* --- Item Detail Modal --- */
gspro-item-detail .gspro-c-item-detail__title {
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-size: 28px !important;
  line-height: 1.2 !important;
}

gspro-item-detail .gspro-c-item-detail__description {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--charcoal) !important;
  line-height: 1.7 !important;
  font-size: 15px !important;
}

/* --- Floating Wishlist (heart, bottom-right) --- */
gspro-wishlist[data-mode="collapse"],
.gspro-c-wishlist__trigger {
  background: var(--sunshine) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow-pop) !important;
  border: 3px solid var(--white) !important;
  transition: transform 0.15s ease;
}

gspro-wishlist[data-mode="collapse"]:hover {
  transform: scale(1.08);
}

gspro-wishlist[data-mode="collapse"] use {
  fill: var(--red) !important;
}

gspro-wishlist .gspro-c-wishlist__count {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
  border: 2px solid var(--white) !important;
}

gspro-wishlist[data-mode="expand"] {
  background: var(--white) !important;
  font-family: 'DM Sans', sans-serif !important;
}

gspro-wishlist[data-mode="expand"] .gspro-c-wishlist__title,
gspro-wishlist[data-mode="expand"] h2,
gspro-wishlist[data-mode="expand"] h3 {
  font-family: 'Fredoka', sans-serif !important;
  color: var(--navy) !important;
}

/* Hide time-of-day selectors inside the wishlist date picker.
   Bounce houses are full-day rentals — there's no meaningful "12:00 PM"
   start vs end. Goodshuffle's disable-time-selection attribute is
   inconsistent in practice, so we force-hide via CSS as a backup.
   This targets time-input dropdowns inside the wishlist date picker
   without affecting other dropdowns in the wishlist (rate, etc.). */
gspro-wishlist .gspro-c-date-picker select[name*="time" i],
gspro-wishlist .gspro-c-date-picker select[id*="time" i],
gspro-wishlist .gspro-c-date-picker .gspro-c-date-picker__time,
gspro-wishlist .gspro-c-date-picker .gspro-o-time-input,
gspro-wishlist .gspro-c-date-picker__times,
gspro-wishlist [class*="date-picker"] [class*="time"],
gspro-item-detail [class*="date-picker"] [class*="time"] {
  display: none !important;
}

/* Also hide labels associated with hidden time inputs */
gspro-wishlist .gspro-c-date-picker label[for*="time" i] {
  display: none !important;
}

/* --- Generic primary buttons inside the widget --- */
button.gspro-o-button--primary {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 600 !important;
  border-radius: var(--radius-pill) !important;
  padding: 12px 24px !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.2s ease;
}

button.gspro-o-button--primary:hover {
  background: var(--red-deep) !important;
}

/* --- "Powered by GoodShuffle" footer — soften it --- */
.gspro-c-poweredby,
[class*="poweredby"] {
  opacity: 0.5 !important;
  font-size: 11px !important;
  margin-top: 24px !important;
}

/* ============================================================
   MOBILE — genuinely good, not just "doesn't crash"
   ============================================================ */
@media (max-width: 768px) {
  /* Search bar: full-width, no overflow, generous tap target */
  .gspro-o-search {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .gspro-o-search input {
    font-size: 16px !important; /* prevent iOS zoom-on-focus */
    padding: 12px 16px !important;
  }

  .gspro-o-search > .gspro-o-button,
  .gspro-o-search button {
    padding: 12px 18px !important;
    font-size: 14px !important;
  }

  /* Categories + Filters buttons: side by side, equal width */
  .gspro-c-item-gallery__toggle-categories,
  .gspro-c-item-gallery__toggle-filters {
    flex: 1 1 calc(50% - 6px) !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Item cards: full width, larger touch target for tap */
  gspro-item-card {
    margin-bottom: 16px !important;
  }

  gspro-item-card .gspro-o-card__title,
  .gspro-c-item-card__title {
    font-size: 16px !important;
  }

  /* The wishlist add button shouldn't permanently appear "hovered"
     on mobile — keep it visible but smaller, no sticky hover state. */
  gspro-item-card .gspro-o-card__add button,
  .gspro-c-item-card__add button {
    padding: 7px 12px !important;
    font-size: 12px !important;
    box-shadow: 0 2px 8px rgba(232, 67, 76, 0.3);
  }

  /* Item detail modal — give it room on phones */
  gspro-item-detail .gspro-c-item-detail__title {
    font-size: 22px !important;
  }
}

/* ============================================================
   TRUST SIGNAL STRIP (above the gallery)
   Custom CSS for the new HTML block we add to front-page.php
   ============================================================ */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 28px;
  margin: 0 0 32px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--sky-lighter), var(--cream));
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trust-strip-item::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 768px) {
  .trust-strip {
    border-radius: var(--radius);
    padding: 14px 16px;
    gap: 8px 16px;
    font-size: 13px;
  }
  .trust-strip-item {
    flex: 1 1 calc(50% - 8px);
    justify-content: flex-start;
  }
}

/* ============================================================
   "How to Book" 3-step strip — sits above the gallery
   Removes the "wait, what do I do?" hesitation by spelling out
   the 3 steps inline with the booking widget.
   ============================================================ */
.howto-strip {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 28px;
  padding: 18px 24px;
  background: var(--white);
  border: 2px solid var(--sky-lighter);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(77, 184, 232, 0.08);
}

.howto-step {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
}

.howto-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(77, 184, 232, 0.35);
}

.howto-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.howto-text strong {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 2px;
}

.howto-text span {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.4;
}

.howto-arrow {
  display: flex;
  align-items: center;
  color: var(--sky-light);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .howto-strip {
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px;
  }
  .howto-arrow {
    display: none;
  }
  .howto-step {
    gap: 12px;
  }
  .howto-num {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .howto-text strong {
    font-size: 14px;
  }
  .howto-text span {
    font-size: 12px;
  }
}

/* ============================================================
   Sticky Mobile Bottom Bar — Book Now + Call Us
   Only visible on mobile, only after scrolling past the hero.
   Two equal-width buttons. Always-reachable booking shortcut.
   ============================================================ */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90; /* below mobile menu drawer (200) but above content */
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(10, 22, 40, 0.08);
    box-shadow: 0 -4px 20px rgba(10, 22, 40, 0.08);
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .mobile-bottom-bar.visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-bottom-btn {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    border-radius: var(--radius-pill);
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .mobile-bottom-btn:active {
    transform: scale(0.97);
  }

  .mobile-bottom-btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232, 67, 76, 0.35);
  }

  .mobile-bottom-btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--sky-light);
  }

  .mobile-bottom-btn svg {
    flex-shrink: 0;
  }

  /* Add bottom padding to body so content above the bar isn't blocked */
  body {
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}
