/* Palette & fonts taken from the site's real Elementor kit settings:
   primary #6EC1E4, accent #44BD32, headings Roboto 600, body Arsenal 400 */
:root {
  --fg: #2b2b2b;
  --bg: #ffffff;
  --muted: #6b6b6b;
  --primary: #6EC1E4;
  --accent: #44BD32;
  --border: #e6e6e6;
  --max: 860px;
}

/* Brand page — always light, regardless of OS theme (consistent storefront look) */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Arsenal', Georgia, serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4, .site-header .brand {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 3px solid var(--accent);
  max-width: var(--max);
  margin: 0 auto;
}

.site-header .brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 80px;
  width: auto;
  margin: 0;
}

.site-header nav a {
  margin-left: 1.5rem;
  color: var(--fg);
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-header nav a:hover { color: var(--accent); }

.site-header-home {
  max-width: 1200px;
  border-bottom: none;
}

.site-header-home .header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  color: var(--fg) !important;
  text-decoration: none !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

.btn-dark {
  background: var(--fg);
  color: #fff !important;
}

.btn-dark:hover { opacity: 0.85; }

.btn-outline {
  border-color: var(--border);
  color: var(--fg) !important;
  background: #fff;
}

.btn-outline:hover { border-color: var(--fg); }

@media (max-width: 900px) {
  .site-header-home nav { display: none; }
  .header-phone { display: none; }
}

@media (max-width: 480px) {
  .site-header { padding: 1rem; }
  .brand-logo { height: 56px; }
  .site-header nav a { margin-left: 0.75rem; font-size: 0.85rem; }
}

.content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.content h1 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.4rem;
}

.content h2 {
  font-size: 1.4rem;
  color: var(--fg);
  border-left: 4px solid var(--accent);
  padding-left: 0.6rem;
  margin: 1.8rem 0 1rem;
}

.content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.content a {
  color: var(--accent);
  font-weight: 600;
}

.content p { margin: 0 0 1.1rem; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
  margin: 1rem 0;
}

.photo-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
}

.content button,
.content input[type="submit"] {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.content button:hover,
.content input[type="submit"]:hover {
  opacity: 0.9;
}

.content input[type="text"],
.content input[type="email"],
.content input[type="tel"],
.content textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Arsenal', serif;
  font-size: 1rem;
  margin-top: 0.3rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.store-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

.store-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.store-card-body {
  padding: 0.9rem 1rem 1.1rem;
}

.store-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--primary);
}

.store-card p {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
}

.store-card .store-address {
  color: var(--muted);
}

.store-card .store-hours {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.banner {
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.banner h2, .banner h3 {
  color: #fff;
  border: none;
  padding: 0;
  margin: 0 0 0.4rem;
}

/* ---- Landing page (home) ---- */

body.home-page .content {
  max-width: none;
  padding: 0;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.stat-inner {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.75rem, 7vw, 4.5rem);
  flex-wrap: wrap;
}

p.eyebrow {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.hero {
  position: relative;
  padding: 3.5rem 1.5rem 3rem;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, #fff), #fff 60%);
}

.hero-paws {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%2344BD32' fill-opacity='0.18'%3E%3Ccircle cx='40' cy='55' r='6'/%3E%3Ccircle cx='52' cy='46' r='5'/%3E%3Ccircle cx='65' cy='48' r='5'/%3E%3Ccircle cx='58' cy='62' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 72%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: var(--fg) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  margin-bottom: 1.75rem;
}

.badge-pill {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  color: var(--fg);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}

p.hero-sub {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-photos {
  position: relative;
  height: 220px;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  perspective: 1000px;
}

.hero-photo {
  --base-rot: 0deg;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --parallax: 0px;
  --scale: 1;
  position: absolute;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 6px solid #fff;
  box-shadow: 0 16px 32px rgba(20, 30, 25, 0.18);
  animation: photo-float 6s ease-in-out infinite;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
  transform:
    translateY(var(--parallax))
    rotate(var(--base-rot))
    scale(var(--scale))
    perspective(700px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
}

.hero-photo:hover {
  box-shadow: 0 24px 40px rgba(20, 30, 25, 0.3);
  z-index: 5;
}

.hero-photo-1 { top: 10px; left: 6%; --base-rot: -7deg; animation-delay: 0s; }
.hero-photo-2 { top: 0; left: 32%; --base-rot: 4deg; animation-delay: -1.5s; }
.hero-photo-3 { top: 10px; right: 32%; --base-rot: -4deg; animation-delay: -3s; }
.hero-photo-4 { top: 0; right: 6%; --base-rot: 6deg; animation-delay: -4.5s; }

@keyframes photo-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -14px; }
}

.trust-row {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.trust-row span { white-space: nowrap; }

@media (max-width: 700px) {
  .hero-photos { height: 340px; max-width: 320px; }
  .hero-photo { width: 120px; height: 120px; }
  .hero-photo-1 { top: 0; left: 0; }
  .hero-photo-2 { top: 0; right: 0; left: auto; }
  .hero-photo-3 { bottom: 0; left: 0; top: auto; }
  .hero-photo-4 { bottom: 0; right: 0; left: auto; top: auto; }
  .trust-row { flex-direction: column; align-items: center; gap: 0.6rem; }
}

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

.brand-marquee {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 40s linear infinite;
}

.brand-track .brand-card {
  flex: none;
  margin-right: 1rem;
}

.brand-track-rev { animation-direction: reverse; }

.brand-dup { display: contents; }

.brand-marquee:hover .brand-track { animation-play-state: paused; }

@keyframes brand-scroll {
  to { transform: translateX(-50%); }
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 108px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-card img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  display: block;
}

.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

@media (max-width: 560px) {
  .brand-card { width: 150px; height: 88px; padding: 0.8rem 1rem; }
  .brand-card img { max-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
  .brand-marquee { overflow-x: auto; }
}

p.section-lead {
  text-align: center;
  max-width: 560px;
  margin: -1rem auto 1.5rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  perspective: 1200px;
  transform: perspective(1200px) rotateX(8deg) translateY(40px);
  transform-origin: center bottom;
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: perspective(1200px) rotateX(0) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff !important;
}

.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  border-color: var(--primary);
  color: var(--primary) !important;
}

.btn-ghost:hover { background: var(--primary); color: #fff !important; }

.btn-light {
  background: #fff;
  color: var(--accent) !important;
}

.stat-strip {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  flex: 0 1 auto;
  min-width: 0;
}

/* Number + "+" share one baseline row, so the plus reads as part of the figure.
   The display size lives here, not on <strong>, so the plus can size off it in em. */
.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.03em;
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 3.9rem);
  line-height: 1;
}

.stat strong {
  font-family: inherit;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

/* Lifted off the baseline so the glyph optically centres on the digits
   instead of sitting low and reading as a full stop */
.stat-plus {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.62em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-0.36em);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.stat-label {
  margin-top: 0.7rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 15ch;
}

@media (max-width: 560px) {
  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    max-width: 11ch;
  }
}

.content section h2 {
  text-align: center;
  border: none;
  padding: 0;
  font-size: 1.6rem;
  margin-bottom: 1.75rem;
}

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

.cat-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  color: var(--accent);
  background: color-mix(in srgb, var(--primary) 16%, transparent);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cat-icon svg {
  width: 27px;
  height: 27px;
  display: block;
}

.cat-card:hover .cat-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

@media (prefers-reduced-motion: reduce) {
  .cat-icon,
  .cat-card:hover .cat-icon,
  .adv-card:hover .cat-icon { transition: none; transform: none; }
}

.cat-card h3 {
  color: var(--fg);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.cat-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.banner-market {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  color: #fff;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: linear-gradient(120deg, var(--accent), #35a7c9, var(--primary), var(--accent));
  background-size: 300% 300%;
  animation: market-drift 18s ease-in-out infinite;
}

@keyframes market-drift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Soft light blooms drifting behind the copy */
.market-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.market-orb-1 {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -60px;
  background: #d8ff9e;
  animation: orb-float-1 14s ease-in-out infinite;
}

.market-orb-2 {
  width: 280px;
  height: 280px;
  bottom: -110px;
  right: -50px;
  background: #bfe9ff;
  animation: orb-float-2 17s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-55px, -35px) scale(1.12); }
}

.market-paws {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.16'%3E%3Ccircle cx='40' cy='55' r='6'/%3E%3Ccircle cx='52' cy='46' r='5'/%3E%3Ccircle cx='65' cy='48' r='5'/%3E%3Ccircle cx='58' cy='62' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 78%);
  animation: paws-scroll 40s linear infinite;
}

@keyframes paws-scroll {
  from { background-position: 0 0; }
  to { background-position: 240px 120px; }
}

.market-inner {
  position: relative;
  padding: 4.5rem 1.5rem;
}

p.market-eyebrow {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.9rem;
}

.banner-market h2.market-title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

/* Slow shine sweeping through the brand name */
.market-brand {
  text-decoration: none !important;
  background: linear-gradient(100deg, #ffffff 20%, #fff6b8 45%, #ffffff 70%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  animation: market-shine 5s linear infinite;
}

@keyframes market-shine {
  to { background-position: 250% center; }
}

p.market-lead {
  max-width: 620px;
  margin: 0 auto 1.75rem;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.94);
}

.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.market-chip {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

.market-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0;
  padding: 0.9rem 1.9rem;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.market-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.market-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.market-cta:hover .market-arrow { transform: translateX(5px); }

@media (max-width: 560px) {
  .market-inner { padding: 3.25rem 1.25rem; }
  .market-chip { font-size: 0.8rem; padding: 0.42rem 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  .banner-market,
  .market-orb,
  .market-paws,
  .market-brand { animation: none; }
  .market-cta,
  .market-arrow { transition: none; }
  .market-cta:hover { transform: none; }
  .market-brand {
    background: none;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
  }
}

.adv-card {
  border-radius: 10px;
  padding: 1.4rem;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.adv-card h3 {
  color: var(--fg);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.adv-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.adv-card .cat-icon {
  margin-bottom: 0.8rem;
}

.adv-card:hover .cat-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

main.content-wide {
  max-width: 1160px;
}

.content-wide h1 {
  text-align: center;
}

.blog-thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  background: color-mix(in srgb, var(--primary) 14%, transparent);
  color: var(--accent);
}

.blog-thumb-fallback svg {
  width: 44px;
  height: 44px;
}

@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: block;
  text-decoration: none !important;
  color: var(--fg) !important;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.blog-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.blog-card:hover img {
  transform: scale(1.06);
}

.blog-card h3 {
  font-size: 0.98rem;
  margin: 0.8rem 1rem 0.4rem;
  color: var(--fg);
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 1rem 1rem;
}

.section-wholesale {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
}

.faq-list {
  max-width: 700px;
  margin: 1.5rem auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: var(--fg);
}

.faq-item p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-wholesale h3 {
  text-align: center;
  border: none;
  padding: 0;
}

form.wholesale-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.form-paws {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%2344BD32' fill-opacity='0.10'%3E%3Ccircle cx='40' cy='55' r='6'/%3E%3Ccircle cx='52' cy='46' r='5'/%3E%3Ccircle cx='65' cy='48' r='5'/%3E%3Ccircle cx='58' cy='62' r='8'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  -webkit-mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 55%);
  mask-image: radial-gradient(circle at 100% 0%, #000 0%, transparent 55%);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}

.form-field { display: block; }
.form-field-full { grid-column: 1 / -1; }

.form-label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--fg);
  margin-bottom: 0.35rem;
}

.form-label em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.wholesale-form input[type="text"],
.wholesale-form input[type="email"],
.wholesale-form input[type="tel"],
.wholesale-form textarea,
.wholesale-form select {
  width: 100%;
  margin-top: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: 'Arsenal', serif;
  font-size: 1rem;
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wholesale-form textarea { resize: vertical; }

.wholesale-form :is(input, textarea, select):focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

.form-select {
  position: relative;
  display: block;
}

.form-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
}

.form-select::after {
  content: "";
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

button.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1.25rem;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 35%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button.form-submit:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 45%, transparent);
}

.paw-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  form.wholesale-form { padding: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  button.form-submit,
  button.form-submit:hover { transition: none; transform: none; }
}

.site-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Photo marquee (Fifa landing galleries) */
.photo-marquee {
  overflow: hidden;
  margin: 1.5rem 0 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.photo-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 36s linear infinite;
}

.photo-track .photo-item {
  flex: none;
  width: 235px;
  height: 235px;
  margin-right: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.photo-track .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.photo-track .photo-item:hover img { transform: scale(1.06); }

.photo-marquee:hover .photo-track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .photo-track { animation: none; }
  .photo-marquee { overflow-x: auto; }
  .photo-track .photo-item img { transition: none; }
}
