/* ============================================
   THE TOY DROP — Brand Stylesheet
   Colors sampled from official logo:
   Navy #0B69AD · Coral #F08D8F · Yellow #FBE38D
   Sky background #7EC8F0
   ============================================ */

/* Fonts are loaded via <link> tags in each page's <head> for reliability */

:root {
  --navy: #0B69AD;
  --navy-dark: #084F82;
  --coral: #F08D8F;
  --coral-dark: #E06F72;
  --yellow: #FBE38D;
  --yellow-dark: #F3CE4E;
  --sky: #7EC8F0;
  --sky-light: #EAF6FE;
  --cream: #FFFDF8;
  --ink: #1C3A4D;
  --white: #FFFFFF;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 10px 30px rgba(11, 105, 173, 0.12);
  --shadow-soft: 0 4px 14px rgba(11, 105, 173, 0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 0.5em 0;
  line-height: 1.15;
  color: var(--navy-dark);
}

p { line-height: 1.65; margin: 0 0 1em 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 999;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--sky-light);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-dark);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--sky-light);
}

.nav-links a.active {
  background: var(--navy);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 3px;
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 24px 18px;
    display: none;
    border-bottom: 3px solid var(--sky-light);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 13px 16px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(2px); }

.btn-equal { min-width: 216px; justify-content: center; }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 0 var(--coral-dark);
}
.btn-primary:hover { background: var(--coral); box-shadow: 0 6px 0 var(--coral-dark); }
.btn-primary:active { box-shadow: 0 1px 0 var(--coral-dark); }

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 4px 0 var(--navy);
}
.btn-secondary:hover { background: var(--sky-light); box-shadow: 0 6px 0 var(--navy); }
.btn-secondary:active { box-shadow: 0 1px 0 var(--navy); }

.btn-yellow {
  background: var(--yellow);
  color: #001F3F;
  box-shadow: 0 4px 0 var(--yellow-dark);
}
.btn-yellow:hover { background: var(--yellow); box-shadow: 0 6px 0 var(--yellow-dark); }
.btn-yellow:active { box-shadow: 0 1px 0 var(--yellow-dark); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-light) 100%);
  overflow: hidden;
  padding: 70px 0 90px;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #001F3F;
  background: var(--yellow);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.eyebrow-coral {
  color: var(--white);
  background: var(--coral);
}

.eyebrow-sm {
  font-size: 0.8rem;
  padding: 6px 17px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--navy-dark);
}
.hero h1 .accent { color: var(--coral); }

.hero-headline {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(3.2rem, 6.5vw, 5rem) !important;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-align: left;
  text-shadow: 0 2px 6px rgba(8,79,130,0.18);
}

@media (max-width: 860px) {
  .hero-headline { text-align: center; }
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  color: var(--ink);
}

@media (max-width: 860px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
@media (max-width: 860px) { .hero-ctas { justify-content: center; } }

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

.hero-art img {
  width: 100%;
  max-width: 380px;
  animation: float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 18px 24px rgba(11,105,173,0.25));
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art img { animation: none; }
}

/* puffy scattered clouds (SVG-based, fully contained — no edge clipping) */
.hero { isolation: isolate; }

.clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.puff-cloud {
  position: absolute;
  opacity: 1;
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(11,105,173,0.22));
}

/* Large corner clouds, framing the hero */
.pc-1 { width: 225px; top: 4%;   left: 5%; }
.pc-3 { width: 245px; top: 5%;   right: 5%; }

/* At tablet/small-desktop widths, the two-column hero layout puts the
   headline close to the left edge — pc-1 needs to shrink and tuck further
   into the corner here so it never sits behind the (white) headline text,
   where the two would blend and become unreadable. */
@media (min-width: 861px) and (max-width: 1700px) {
  .pc-1 { width: 130px; top: -3%; left: 1%; }
}

/* Small accent clouds tucked low, clear of headline / logo / buttons */
.pc-2 { width: 145px; bottom: 6%; left: 8%; opacity: 0.7; }
.pc-4 { width: 150px; bottom: 5%; right: 7%; opacity: 0.65; }

/* Mid-side clouds filling the empty space for a fuller, cohesive sky */
.pc-5 { width: 125px; top: 40%;  left: 2.5%; opacity: 0.4; }
.pc-6 { width: 140px; top: 44%;  right: 2.5%; opacity: 0.38; }

@media (max-width: 780px) {
  .pc-1, .pc-3 { width: 165px; }
  .pc-2, .pc-4 { width: 110px; }
  .pc-5, .pc-6 { display: none; }
}
@media (max-width: 480px) {
  .pc-1, .pc-3 { width: 110px; top: 0%; }
  .pc-1 { left: -2%; }
  .pc-3 { right: -2%; }
  .pc-2, .pc-4 { width: 90px; bottom: 2%; }
}

.hero-inner, .hero > .container { position: relative; z-index: 1; }

/* ============ SECTIONS ============ */
.section {
  padding: 70px 0;
}
.section-tight { padding: 44px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.section-head p { color: #3976AF; }

.section-alt {
  background: var(--white);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }

/* ============ CARDS: product / feature / location ============ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-5, .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(11,105,173,0.18);
}

.product-thumb {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--navy);
}
/* rotate through brand colors for placeholder thumbs */
.product-thumb.c1 { background: var(--sky-light); }
.product-thumb.c2 { background: #FDEFEA; }
.product-thumb.c3 { background: #FFF7DF; }
.product-thumb.c4 { background: #EFF7FF; }

.product-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 34px;
  background: var(--white);
  border-radius: 9px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
  padding: 4px 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.brand-badge img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.product-photo .coming-badge {
  top: 10px;
  left: 10px;
  bottom: auto;
  right: auto;
  background: var(--coral);
  font-size: 0.72rem;
  padding: 7px 14px;
}

.card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-body h4 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.card-body .desc {
  font-size: 0.9rem;
  color: #3976AF;
  margin-bottom: auto;
}

.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral-dark);
  font-size: 1.05rem;
  margin-top: 8px;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  align-self: flex-start;
}

/* placeholder-note class removed — no longer used */

/* Feature card (About / Home "why us") */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.feature-icon {
  font-size: 2.1rem;
  margin: 0 auto 12px;
  display: block;
  text-align: center;
}
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { color: #3976AF; margin-bottom: 0; font-size: 0.95rem; }

/* Locations grid — left-aligned, ready to hold more cards as machines are added */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 360px));
  gap: 28px;
  justify-content: start;
}

.location-card-v2 {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
  text-align: left;
}

.location-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.location-card-top .location-pin { margin: 0; }

.status-pill-coral {
  background: var(--coral);
  color: var(--white);
}

.location-card-v2 h3 { font-size: 1.3rem; margin-bottom: 6px; }
.loc-address { margin: 0 0 16px; color: #3976AF; }

.loc-hours { margin-bottom: 22px; }
.loc-hours-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 6px;
  font-size: 0.95rem;
}
.hours-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 0.9rem;
  color: #3976AF;
}
.hours-list li { padding: 2px 0; }

.location-card-v2 .btn { width: 100%; justify-content: center; }

.location-pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* CTA banner */
.cta-banner {
  background: var(--coral);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.cta-banner h3 { color: var(--white); font-size: 1.8rem; }
.cta-banner .btn-secondary { border-color: var(--white); color: var(--white); background: transparent; box-shadow: 0 4px 0 rgba(0,0,0,0.18); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.15); box-shadow: 0 6px 0 rgba(0,0,0,0.18); }
.cta-banner .btn-secondary:active { box-shadow: 0 1px 0 rgba(0,0,0,0.18); }
.cta-banner .btn-primary { background: var(--white); color: var(--coral-dark); box-shadow: 0 4px 0 rgba(0,0,0,0.18); }
.cta-banner .btn-primary:hover { background: var(--sky-light); box-shadow: 0 6px 0 rgba(0,0,0,0.18); }
.cta-banner .btn-primary:active { box-shadow: 0 1px 0 rgba(0,0,0,0.18); }

/* Category divider on Latest Drops */
.category-block { margin-bottom: 56px; }
.category-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
}
.category-head h3 { margin: 0; font-size: 1.5rem; }
.category-head .rule {
  flex: 1;
  height: 3px;
  background: var(--sky-light);
  border-radius: 3px;
}

/* ============ FORM (Contact) ============ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #DCEBF6;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--sky-light);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: none;
  background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }

.form-status {
  margin-top: 14px;
  font-weight: 700;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { color: #1E8E5A; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}
.contact-method .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-method a { font-weight: 700; color: var(--navy); }

/* Popup / announcement bar */
.announce-bar {
  background: var(--navy);
  color: var(--yellow);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 9px 16px;
  position: relative;
}
@media (max-width: 620px) {
  .announce-bar { padding-right: 46px; }
}
.announce-bar button {
  position: absolute;
  right: 6px;
  top: 3px;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.8;
  padding: 12px 14px;
  line-height: 1;
}
.announce-bar button:hover { opacity: 1; }

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,58,77,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.popup-overlay.open { display: flex; }
.popup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: pop-in 0.25s ease;
}
@keyframes pop-in {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.popup-card .close-popup {
  position: absolute;
  top: 4px;
  right: 4px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #9AAAB6;
  padding: 12px;
  line-height: 1;
}
.popup-card h3 { margin-bottom: 10px; }
.popup-card p { color: #3976AF; }

/* ============ PRODUCT LIGHTBOX (click-to-enlarge product cards) ============ */
.card[data-lightbox] { cursor: pointer; }
.card[data-lightbox]:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11,58,77,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}
.product-lightbox.open { display: flex; }
.product-lightbox-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  animation: pop-in 0.25s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 680px) {
  .product-lightbox-card { grid-template-columns: 1fr; }
}
.product-lightbox-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
  overflow: hidden;
}
.product-lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-lightbox-badge-slot:empty { display: none; }
.product-lightbox-badge-slot img {
  height: 34px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.product-lightbox-badge-slot img.is-palmpals {
  height: 54px;
}
.product-lightbox-badge-slot .coming-badge {
  position: static;
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  width: max-content;
}
.product-lightbox-info {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.product-lightbox-info h3 {
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--navy-dark);
  margin: 0;
}
.product-lightbox-info p {
  color: #3976AF;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}
.product-lightbox-info .price-tag {
  font-size: 1.3rem;
  margin-top: 6px;
}
.product-lightbox-card .close-popup {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--white);
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: #9AAAB6;
  padding: 12px;
  line-height: 1;
  border-radius: 50%;
  z-index: 2;
}
.product-lightbox-card .close-popup:hover { color: var(--navy-dark); }

body.lightbox-open { overflow: hidden; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy);
  color: #DCEBF6;
  padding: 44px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-grid > div:first-child { padding-right: 30px; margin-top: -8px; }
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid > div:first-child { padding-right: 0; margin-top: 0; }
}
.footer-grid img { height: 36px; margin-bottom: 12px; }
@media (max-width: 720px) { .footer-grid img { margin-left: auto; margin-right: auto; } }

.footer-grid h5 {
  color: var(--yellow);
  font-size: 1.02rem;
  margin-bottom: 12px;
}
.footer-links { list-style: none; padding: 0; margin: 0; font-size: 0.94rem; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { text-decoration: underline; }
.footer-links a:hover { color: var(--yellow); }

.footer-social { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
@media (max-width: 720px) { .footer-social { justify-content: center; } }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 17px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}
.footer-social a:hover { transform: translateY(-2px); }
.footer-social a:active { transform: translateY(2px); }
.footer-social .social-instagram { background: #E08487; box-shadow: 0 4px 0 #C96A6D; }
.footer-social .social-instagram:hover { box-shadow: 0 6px 0 #C96A6D; }
.footer-social .social-instagram:active { box-shadow: 0 1px 0 #C96A6D; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #A9C6DC;
}

/* ============ FIND A TOY DROP (Home) ============ */
.find-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
@media (max-width: 860px) {
  .find-location-grid { grid-template-columns: 1fr; text-align: center; }
}

.location-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--sky-light), var(--sky));
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.coming-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #001F3F;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.mini-location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 26px 0 22px;
  text-align: left;
}
@media (max-width: 860px) {
  .mini-location-card { margin-left: auto; margin-right: auto; max-width: 380px; }
}
.mini-location-card h3 { margin-bottom: 4px; font-size: 1.15rem; color: var(--navy-dark); }
.mini-location-card p { margin: 0 0 10px; color: #3976AF; font-size: 0.92rem; }
.mini-location-card .location-pin { margin: 0; flex-shrink: 0; }
.mini-location-card > div:last-child { flex: 1; text-align: left; }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
