/* ==============================================
   MOON DOG – Consolidated Stylesheet
   ============================================== */

/* === GLOBAL / SHARED (from styles-shared.php) === */
html { scroll-behavior: smooth; }
.nav-font { font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Akkordeon FAQ */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* Platzhalter */
.img-placeholder {
    background-color: #d8d4cc;
    display: flex; align-items: center; justify-content: center;
    color: #9ca3af; text-align: center; padding: 1rem; border-radius: 1rem;
}

/* Language Dropdown */
.header-lang-dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: #EBE8E1; min-width: 130px; z-index: 100;
    padding: 0.25rem 0;
}
.header-lang-wrap.open .header-lang-dropdown { display: block; }
.header-lang-wrap.open .fa-chevron-down { transform: rotate(180deg); }
.fa-chevron-down { transition: transform 0.2s; }

/* === BRAND COLORS === */
body { background-color: #EBE8E1 !important; color: #34444A !important; overflow-x: hidden; }
.bg-white { background-color: #EBE8E1 !important; }
.text-gray-600 { color: #34444A !important; opacity: 0.75; }
.text-gray-700 { color: #34444A !important; }
.text-gray-400 { color: #34444A !important; opacity: 0.55; }
.text-gray-500 { color: #34444A !important; opacity: 0.65; }
h1, h2, h3, h4, h5, h6 { color: #34444A; font-weight: 600; }
details.group { background-color: #fff !important; }
details summary { color: #34444A !important; }
.model-card { background-color: #ffffff !important; }
.model-badge { background-color: #BFCDC8; color: #34444A; font-size: 0.7rem; letter-spacing: 0.12em; padding: 0.3rem 0.85rem; border-radius: 999px; font-weight: 700; display: inline-block; text-transform: uppercase; margin: 0; line-height: 1.4; }

/* === MOBILE === */
img { max-width: 100%; height: auto; }
button, a { min-height: 44px; }

@media (max-width: 767px) {
    .header-lang { display: none !important; }
    .header-social { gap: 0.5rem !important; }
    .header-social a { width: 1.5rem !important; height: 1.5rem !important; }
    .header-social i { font-size: 0.95rem !important; }
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.reveal--left  { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX(40px); }
.reveal.reveal--visible { opacity: 1; transform: translate(0, 0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.img-zoom-wrap { overflow: hidden; border-radius: 0.5rem; }
.img-zoom-wrap img { transform: scale(1.07); transition: transform 1s ease; }
.reveal--visible .img-zoom-wrap img { transform: scale(1); }

.scene-img-wrap { overflow: hidden; border-radius: 0.5rem; }
.scene-img-wrap img { transition: transform 0.5s ease; }
.scene-img-wrap:hover img { transform: scale(1.05); }

/* Skip-Link */
.skip-link { position: absolute; top: -100%; left: 0; background: #22919C; color: #fff; padding: 0.75rem 1.5rem; z-index: 9999; font-weight: 700; text-decoration: none; border-radius: 0 0 4px 0; }
.skip-link:focus { top: 0; }

*:focus-visible { outline: 3px solid #22919C; outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}

@media print {
    body { background: #fff !important; color: #000 !important; }
    header, footer, .sticky-sidebar, #stickyCtaBar, #mobileStickyBar, .skip-link, .hero-scroll, .yt-facade svg { display: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
    nav a[href]::after, .header-lang a[href]::after { content: none; }
    img { max-width: 100% !important; }
}


/* === FOOTER === */
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(5, 1fr); gap: 2rem; } }


/* ==============================================
   HOME PAGE
   ============================================== */

/* === HERO – VOLLFLÄCHIG === */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: calc(100dvh - var(--header-h, 120px));
    max-height: calc(100dvh - var(--header-h, 120px));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    opacity: 0;
    animation: heroFade 18s infinite;
}
.hero-slide:nth-child(1) { background-image: url('/assets/images/hero/moon-dog-hundebuggy-welpen-3.webp'); animation-delay: 0s; }
.hero-slide:nth-child(2) { background-image: url('/assets/images/hero/moon-dog-hundebuggy-joggen-2.webp'); animation-delay: 6s; }
.hero-slide:nth-child(3) { background-image: url('/assets/images/hero/moon-dog-hero.webp'); animation-delay: 12s; }
@keyframes heroFade {
    0%      { opacity: 0; }
    5%      { opacity: 1; }
    33.33%  { opacity: 1; }
    38.33%  { opacity: 0; }
    100%    { opacity: 0; }
}
@media (max-width: 767px) {
    .hero-slide { background-position: 80% center; }
    .hero-slide:nth-child(1) { background-position: 75% center; }
    .hero-slide:nth-child(2) { background-position: 66% center; margin-left: -80%; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.65) 20%, rgba(5,5,5,0.25) 42%, rgba(5,5,5,0.0) 58%),
        linear-gradient(to top, rgba(5,5,5,0.4) 0%, transparent 40%);
}
@media (max-width: 1023px) {
    .hero-overlay {
        background: linear-gradient(to top, rgba(5,5,5,0.88) 30%, rgba(5,5,5,0.65) 70%, rgba(5,5,5,0.3) 100%);
    }
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 7rem 2rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: min(62%, 860px);
    margin-left: max(2rem, calc((100vw - 1400px) / 2 + 2rem - 13px));
}
@media (max-width: 1023px) {
    .hero-content {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 8rem 1.5rem 4rem;
    }
}
@media (max-width: 767px) {
    .hero-fullscreen {
        height: 100dvh;
        max-height: 100dvh;
        min-height: 560px;
        align-items: flex-end;
    }
    .hero-overlay {
        background: linear-gradient(to top, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.65) 40%, rgba(5,5,5,0.15) 70%, rgba(5,5,5,0.05) 100%);
    }
    .hero-content {
        padding: 0 1.25rem 2.5rem !important;
        text-align: left;
        align-items: flex-start;
    }
    .hero-sub { max-width: 100% !important; }
    .hero-ctas { justify-content: flex-start; }
    .hero-headline { font-size: clamp(1.75rem, 8vw, 2.5rem) !important; }
    .hero-scroll { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content { padding: 6rem 2rem 4rem !important; }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227, 218, 204, 0.10);
    border: 1px solid rgba(227, 218, 204, 0.30);
    color: #e3dacc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    width: fit-content;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e3dacc;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-badge-h1 {
    display: inline-block;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e3dacc;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin: 0;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
}
.hero-headline {
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}
.hero-headline-accent { color: #e3dacc; }
/* Hero Text Slides – synced with background slides */
.hero-text-slides {
    position: relative;
    min-height: clamp(140px, 18vw, 220px);
}
.hero-text-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: heroFade 18s infinite;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.hero-text-slide:first-child { position: relative; }
.hero-text-slide .hero-headline { margin: 0; }
.hero-text-slide .hero-badge { margin: 0; }
.hero-sub--slide {
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    max-width: 480px;
}
.hero-sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
}
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e3dacc;
    color: #000;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.cta-primary:hover { background: #f0e9de; transform: translateY(-1px); }
.cta-primary svg { transition: transform 0.25s ease; }
.cta-primary:hover svg { transform: translateX(5px); }
.cta-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255,255,255,0.75);
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.9rem 1.75rem;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.cta-secondary:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.25rem;
}
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
}
.trust-chip .fa-check { color: #e3dacc; font-size: 0.7rem; }
.trust-chip:not(:last-child)::after { content: none; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
@media (max-width: 1023px) { .hero-scroll { display: none; } }
.scroll-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    writing-mode: vertical-rl;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(227,218,204,0.6), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* === USP Animations === */
@keyframes usp-bounce { 0%, 100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-4px); } }
@keyframes usp-wiggle { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }
@keyframes usp-spin   { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes usp-shake  { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-5px); } 40% { transform: translateX(5px); } 60% { transform: translateX(-3px); } 80% { transform: translateX(3px); } }
@keyframes usp-pulse  { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.25); } }
@keyframes usp-float  { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(5deg); } }
@keyframes usp-appear { 0% { opacity: 0; transform: translateY(20px) scale(0.85); } 60% { transform: translateY(-4px) scale(1.05); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
.usp-item .usp-icon-wrap { opacity: 0; }
.usp-item.usp-visible .usp-icon-wrap { animation: usp-appear 0.5s ease forwards; }
.usp-item.usp-visible .usp-icon-bounce { animation: usp-appear 0.5s ease forwards, usp-bounce 0.6s ease 0.55s; }
.usp-item.usp-visible .usp-icon-shake  { animation: usp-appear 0.5s ease forwards, usp-shake  0.5s ease 0.55s; }
.usp-item.usp-visible .usp-icon-float  { animation: usp-appear 0.5s ease forwards, usp-float  0.7s ease 0.55s; }
.usp-item.usp-visible .usp-icon-pulse  { animation: usp-appear 0.5s ease forwards, usp-pulse  0.5s ease 0.55s; }
.usp-item.usp-visible .usp-icon-spin   { animation: usp-appear 0.5s ease forwards, usp-spin   0.6s linear 0.55s; }
.usp-item.usp-visible .usp-icon-wiggle { animation: usp-appear 0.5s ease forwards, usp-wiggle 0.5s ease 0.55s; }

/* === Usecase Swiper === */
.usecase-swiper { overflow: visible !important; }
.usecase-swiper .swiper-wrapper { align-items: stretch; }
.usecase-swiper .swiper-slide { height: auto; }
.usecase-card {
    height: 100%;
    min-height: 280px;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}
.usecase-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.usecase-icon { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.usecase-card h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1.2; margin: 0; }
.usecase-card p  { font-size: 0.9rem; line-height: 1.65; margin: 0; flex-grow: 1; }
.uc-mint  { background-color: #BFCDC8; color: #34444A; }
.uc-mint  .usecase-icon { background: rgba(52,68,74,0.12); color: #34444A; }
.uc-dark  { background-color: #34444A; color: #EBE8E1; }
.uc-dark  .usecase-icon { background: rgba(235,232,225,0.12); color: #EBE8E1; }
.uc-dark  h3 { color: #EBE8E1; }
.uc-pale  { background-color: #C3D7D3; color: #34444A; }
.uc-pale  .usecase-icon { background: rgba(52,68,74,0.12); color: #34444A; }
.uc-teal  { background-color: #115F66; color: #EBE8E1; }
.uc-teal  .usecase-icon { background: rgba(235,232,225,0.15); color: #EBE8E1; }
.uc-teal  h3 { color: #EBE8E1; }
.uc-green { background-color: #22919C; color: #EBE8E1; }
.uc-green .usecase-icon { background: rgba(235,232,225,0.15); color: #EBE8E1; }
.uc-green h3 { color: #EBE8E1; }
.usecase-pagination { position: relative !important; bottom: auto !important; top: auto !important; }
.usecase-pagination .swiper-pagination-bullet { background: #BFCDC8; opacity: 0.5; width: 8px; height: 8px; }
.usecase-pagination .swiper-pagination-bullet-active { background: #115F66; opacity: 1; }
.usecase-nav-btn { width: 48px; height: 48px; border-radius: 50%; background: #34444A; color: #EBE8E1; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.usecase-nav-btn:hover { background: #115F66; }
.usecase-nav-btn:disabled { background: #BFCDC8; color: #34444A; cursor: default; }

/* === Responsive CTA Text === */
.cta-mobile { display: none; }
@media (max-width: 767px) {
    .cta-desktop { display: none; }
    .cta-mobile { display: inline; }
}

/* === Hero Countdown === */
.hero-countdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.countdown-label {
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(227,218,204,0.7);
}
.countdown-digits {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    min-width: 56px;
}
.countdown-unit span {
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
}
.countdown-unit small {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(227,218,204,0.5);
    margin-top: 0.2rem;
}
.countdown-sep {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    line-height: 1;
    padding-bottom: 1rem;
}
@media (max-width: 767px) {
    .countdown-unit { min-width: 48px; padding: 0.4rem 0.5rem; }
    .countdown-unit span { font-size: 1.3rem; }
    .countdown-sep { font-size: 1.1rem; }
}

/* === Reviews Marquee === */
.reviews-marquee-wrap { position: relative; width: 100%; }
.reviews-marquee-wrap::before,
.reviews-marquee-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.reviews-marquee-wrap::before { left: 0; background: linear-gradient(to right, #EBE8E1, transparent); }
.reviews-marquee-wrap::after  { right: 0; background: linear-gradient(to left, #EBE8E1, transparent); }
.reviews-marquee-track {
    display: flex; gap: 1.5rem; width: max-content;
    animation: marquee-scroll var(--marquee-duration, 60s) linear infinite;
}
.reviews-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card {
    flex-shrink: 0; width: 340px; background: #fff; border-radius: 1rem; padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
@media (max-width: 767px) { .review-card { width: 280px; padding: 1.25rem; } }


/* ==============================================
   SHARED COMPONENTS (used on home + product)
   ============================================== */

/* === Sticky CTA Bar === */
#stickyCtaBar { background-color: #000 !important; }
@media (max-width: 767px) {
    #stickyCtaBar { display: none !important; }
}

/* === Breed Search === */
.breed-search-wrap { position: relative; display: flex; justify-content: flex-end; }
.breed-search-input {
    background: #22919C; border: none;
    color: #fff; border-radius: 0.75rem; padding: 0.75rem 2.8rem 0.75rem 1.1rem;
    font-size: 0.95rem; font-weight: 600; width: 280px; outline: none;
    transition: background 0.2s; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.breed-search-input::placeholder { color: rgba(255,255,255,0.7); font-weight: 600; }
.breed-search-input:focus { background: #1a7580; }
.breed-search-btn {
    position: absolute; right: 0; top: 0; bottom: 0; width: 2.8rem;
    display: flex; align-items: center; justify-content: center;
    color: #fff; cursor: pointer; background: none; border: none; min-height: auto;
}
.breed-dropdown {
    position: absolute; bottom: 100%; left: 0; right: 0;
    background: #1a1a1a; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0.5rem; max-height: 240px; overflow-y: auto;
    display: none; margin-bottom: 0.35rem; z-index: 100;
}
.breed-dropdown.open { display: block; }
.breed-dropdown-item {
    padding: 0.55rem 0.85rem; color: rgba(255,255,255,0.75);
    cursor: pointer; font-size: 0.85rem; transition: background 0.15s;
}
.breed-dropdown-item:hover, .breed-dropdown-item.active {
    background: rgba(34,145,156,0.25); color: #fff;
}
.breed-dropdown::-webkit-scrollbar { width: 5px; }
.breed-dropdown::-webkit-scrollbar-track { background: transparent; }
.breed-dropdown::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
#mobileBreedDropdown { bottom: auto; top: 100%; margin-bottom: 0; margin-top: 0.35rem; }

/* === Breed Lightbox === */
.breed-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
}
.breed-lightbox.open { display: flex; }
.breed-lightbox-inner {
    background: #EBE8E1; border-radius: 1rem; max-width: 700px; width: 92%;
    max-height: 90vh; overflow-y: auto; position: relative; padding: 2.5rem 2rem 2rem;
    color: #34444A;
}
.breed-lightbox-close {
    position: absolute; top: 0.75rem; right: 0.75rem; width: 2rem; height: 2rem;
    border-radius: 50%; background: rgba(52,68,74,0.1); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    color: #34444A; min-height: auto; transition: background 0.2s;
}
.breed-lightbox-close:hover { background: rgba(52,68,74,0.2); }
.breed-result-card {
    background: #fff; border: none; border-radius: 0.75rem; padding: 1.25rem;
    display: flex; align-items: center; gap: 1.25rem; margin-top: 1rem;
    transition: box-shadow 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.breed-result-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.breed-result-card img { width: 120px; height: 120px; object-fit: contain; flex-shrink: 0; }
.breed-result-card .card-info { flex: 1; }
.breed-result-card .card-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: #888; }
.breed-result-card .card-name { font-size: 1.15rem; font-weight: 700; margin: 0.15rem 0; }
.breed-result-card .card-desc { font-size: 0.85rem; color: #666; margin-bottom: 0.75rem; }
.breed-result-card .card-cta {
    display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1.25rem;
    background: #22919C; color: #fff; border-radius: 0.5rem; font-size: 0.85rem;
    font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.breed-result-card .card-cta:hover { background: #1a7580; }
@media (max-width: 640px) {
    .breed-search-wrap { flex: 1; }
    .breed-search-input { width: 100%; }
    .breed-result-card { flex-direction: column; text-align: center; }
    .breed-result-card img { width: 100px; height: 100px; }
}

/* === Dealer Lightbox === */
.dealer-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    display: none; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
}
.dealer-lightbox.open { display: flex; }

/* === Sticky Sidebar Icons === */
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-sidebar.visible {
    transform: translateY(-50%) translateX(0);
}
.sticky-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #34444A;
    color: #EBE8E1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
}
.sticky-sidebar a:first-child {
    border-radius: 8px 0 0 0;
}
.sticky-sidebar a:last-child {
    border-radius: 0 0 0 8px;
}
.sticky-sidebar a:hover {
    background: #22919C;
    color: #fff;
}
@media (max-width: 767px) {
    .sticky-sidebar {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: translateY(100%);
        flex-direction: row;
        justify-content: center;
        gap: 0;
    }
    .sticky-sidebar.visible {
        transform: translateY(0);
    }
    .sticky-sidebar a {
        flex: 1;
        height: 52px;
        border-radius: 0 !important;
        font-size: 1.2rem;
    }
}

/* === Parallax Bildtrenner === */
.parallax-img { display: block; width: 100%; height: auto; }
@media (max-width: 767px) {
    .bildtrenner-section {
        min-height: 50vh;
    }
    .bildtrenner-section .parallax-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .bildtrenner-section > div[style*="position:absolute"] {
        top: 0;
        display: flex;
        justify-content: flex-end;
        min-height: 100%;
    }
}

/* === Home Mobile Tweaks === */
@media (max-width: 767px) {
    .usp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 1.5rem !important; }
    .models-grid { grid-template-columns: 1fr !important; }
    .blog-swiper-nav { margin-top: 1.5rem !important; }
    .finale-headline { font-size: 2rem !important; line-height: 1.2 !important; }
    .usecase-card { min-height: 220px !important; padding: 1.75rem 1.5rem !important; }
    .sticky-title { font-size: 1rem !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .usp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 1023px) {
    .zigzag-reverse .img-block { order: -1 !important; }
}


/* ==============================================
   PRODUCT PAGE
   ============================================== */
.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.features-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.cross-sell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}
.specs-table tr:nth-child(even) { background-color: #f5f3ee; }
.specs-table tr:nth-child(odd)  { background-color: #ffffff; }
.specs-table td { padding: 1rem 1.25rem; }
.specs-table td:first-child { font-weight: 600; white-space: nowrap; }
.specs-table-dark tr:nth-child(even) { background-color: rgba(255,255,255,0.06); }
.specs-table-dark tr:nth-child(odd)  { background-color: rgba(255,255,255,0.02); }
.specs-table-dark td { padding: 1rem 1.25rem; color: #EBE8E1; border-color: rgba(255,255,255,0.1); }
.specs-table-dark td:first-child { font-weight: 600; white-space: nowrap; color: rgba(235,232,225,0.7); }

/* Checkout & Hero Navigation */
.checkout-nav-btn {
    width: 3rem; height: 3rem; border-radius: 50%;
    background: #fff; border: 1px solid #d1d1d1;
    display: flex; align-items: center; justify-content: center;
    color: #34444A; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    min-height: auto; text-decoration: none;
}
.checkout-nav-btn:hover { background: #34444A; color: #fff; border-color: #34444A; }
.hero-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
}
.hero-nav-prev { left: 1rem; }
.hero-nav-next { right: 1rem; }
@media (min-width: 1400px) {
    .hero-nav-prev { left: 2rem; }
    .hero-nav-next { right: 2rem; }
}

.finale-headline { font-size: 2.5rem; line-height: 1.2; }
@media (min-width: 768px) { .finale-headline { font-size: 3.75rem; } }
@media (max-width: 767px) {
    .product-hero-grid   { grid-template-columns: 1fr !important; }
    .product-hero-info   { padding-top: 0 !important; }
    .features-detail-grid { grid-template-columns: 1fr !important; }
    .zigzag-reverse .img-block { order: -1 !important; }
    .checkout-grid { grid-template-columns: 1fr !important; }
    .hero-nav-btn { display: none; }
}
@media (max-width: 1023px) {
    .zigzag-reverse .img-block { order: -1 !important; }
}


/* ==============================================
   BLOG STYLES (from blog-styles.php)
   ============================================== */

/* === BLOG HERO === */
.blog-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a;
    margin-bottom: 0;
}
.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
}
.blog-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.45) 50%, rgba(5,5,5,0.15) 100%);
}
.blog-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.blog-hero .blog-hero-meta { color: rgba(255,255,255,0.55); }
.blog-hero .blog-hero-badge {
    background-color: rgba(191,205,200,0.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.blog-hero h1 {
    color: #fff !important;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
}
@media (max-width: 767px) {
    .blog-hero { min-height: 50vh; }
    .blog-hero-content { padding: 2rem 1.25rem 2.5rem; }
    .blog-hero h1 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
}

/* === BLOG LAYOUT (Content + Sidebar) === */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1023px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-content { max-width: 100%; overflow-x: hidden; }
}

/* === BLOG CONTENT TYPOGRAPHY === */
.blog-content h2 {
    font-size: 1.6rem; font-weight: 700; color: #34444A;
    margin-top: 2.5rem; margin-bottom: 0.75rem; line-height: 1.3;
}
.blog-content h3 {
    font-size: 1.25rem; font-weight: 600; color: #34444A;
    margin-top: 2rem; margin-bottom: 0.5rem;
}
.blog-content p {
    color: #34444A; line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem;
}
.blog-content ul, .blog-content ol {
    color: #34444A; line-height: 1.8; margin-bottom: 1.25rem; padding-left: 1.5rem;
}
.blog-content ul { list-style-type: disc; }
.blog-content ol { list-style-type: decimal; }
.blog-content li { margin-bottom: 0.4rem; }
.blog-content a { color: #22919C; text-decoration: underline; text-underline-offset: 2px; }
.blog-content a:hover { color: #1a7a84; }
.blog-content strong { font-weight: 700; }
.blog-content blockquote {
    border-left: 4px solid #22919C;
    background: rgba(34,145,156,0.06);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
    font-style: italic;
}
.blog-content blockquote p { margin-bottom: 0; }
.blog-content table {
    width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem;
}
.blog-content table th {
    background: #34444A; color: #EBE8E1; padding: 0.75rem 1rem;
    text-align: left; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.blog-content table td {
    padding: 0.75rem 1rem; border-bottom: 1px solid rgba(52,68,74,0.12);
}
.blog-content table tr:nth-child(even) td { background: rgba(255,255,255,0.5); }
.blog-content table tr:nth-child(odd) td { background: rgba(255,255,255,0.25); }
@media (max-width: 767px) {
    .blog-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .blog-content table th, .blog-content table td { white-space: nowrap; font-size: 0.85rem; padding: 0.6rem 0.75rem; }
}

/* === STICKY TOC BAR === */
.toc-sticky {
    position: fixed;
    top: var(--header-h, 121px);
    left: 0; right: 0; z-index: 40;
    background: #fff;
    border-bottom: 1px solid rgba(52,68,74,0.1);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transform: translateY(-100%); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}
.toc-sticky.toc-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toc-sticky-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1rem;
    display: flex; align-items: center; gap: 0;
    overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none;
}
.toc-sticky-inner::-webkit-scrollbar { display: none; }
.toc-sticky-inner a {
    display: inline-flex; align-items: center; white-space: nowrap;
    padding: 0.75rem 1rem; font-size: 0.8rem; font-weight: 600;
    color: #34444A; text-decoration: none; opacity: 0.6;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s, opacity 0.2s;
    min-height: auto;
}
.toc-sticky-inner a:hover,
.toc-sticky-inner a.active {
    color: #22919C; border-bottom-color: #22919C; opacity: 1;
}

/* === INLINE TOC (in article) === */
.toc {
    background: #fff; border-radius: 0.75rem;
    padding: 1.25rem 1.5rem; margin-bottom: 2rem;
    border: 1px solid rgba(52,68,74,0.1);
}
.toc-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #34444A; margin-bottom: 0.75rem; }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc li a {
    display: block; padding: 0.35rem 0; color: #34444A; text-decoration: none;
    font-size: 0.92rem; border-bottom: 1px solid rgba(52,68,74,0.06); transition: color 0.2s;
}
.toc li a::before { content: counter(toc) ". "; font-weight: 700; color: #22919C; }
.toc li a:hover { color: #22919C; }
.toc li:last-child a { border-bottom: none; }

/* === SIDEBAR === */
.sidebar-card {
    background: #fff; border-radius: 0.75rem; padding: 1.5rem;
    margin-bottom: 1rem; border: 1px solid rgba(52,68,74,0.1);
}
.sidebar-card-title {
    font-weight: 700; font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: #34444A; opacity: 0.6; margin-bottom: 0.75rem;
}
/* Collapsible sidebar */
details.sidebar-collapse {
    background: #fff; border-radius: 0.75rem; margin-bottom: 1rem;
    border: 1px solid rgba(52,68,74,0.1);
}
details.sidebar-collapse > summary {
    padding: 1rem 1.25rem; cursor: pointer; font-weight: 700;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: #34444A; opacity: 0.6;
    display: flex; justify-content: space-between; align-items: center;
    list-style: none;
}
details.sidebar-collapse > summary::-webkit-details-marker { display: none; }
details.sidebar-collapse > summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 0.65rem; color: #22919C; transition: transform 0.2s;
}
details.sidebar-collapse[open] > summary::after { transform: rotate(180deg); }
details.sidebar-collapse .sidebar-collapse-body { padding: 0 1.25rem 1.25rem; }

/* === IN-CONTENT CTA === */
.in-content-cta {
    background: #34444A; border-radius: 1rem; padding: 2rem 2.5rem;
    margin: 2.5rem 0; display: flex; align-items: center; gap: 2rem;
}
@media (max-width: 767px) {
    .in-content-cta { flex-direction: column; text-align: center; padding: 1.5rem; }
}

/* === PRODUCT COMPARISON CARDS === */
.product-cta-card {
    background: #fff; border-radius: 1rem; padding: 1.5rem;
    text-align: center; border: 1px solid rgba(52,68,74,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-cta-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.product-cta-card.bestseller { border: 2px solid #22919C; position: relative; }

/* === FAQ === */
details.blog-faq {
    background: #fff; border-radius: 0.75rem; margin-bottom: 0.75rem;
    border: 1px solid rgba(52,68,74,0.1);
}
details.blog-faq summary {
    padding: 1rem 1.25rem; cursor: pointer; font-weight: 600;
    font-size: 1rem; color: #34444A;
    display: flex; justify-content: space-between; align-items: center;
    list-style: none;
}
details.blog-faq summary::-webkit-details-marker { display: none; }
details.blog-faq summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 0.75rem; color: #22919C; transition: transform 0.2s;
}
details.blog-faq[open] summary::after { transform: rotate(180deg); }
details.blog-faq .faq-answer {
    padding: 0 1.25rem 1.25rem; color: #34444A; line-height: 1.75; font-size: 0.95rem;
}

/* === RELATED POSTS === */
.related-card {
    background: #fff; border-radius: 0.75rem; overflow: hidden;
    border: 1px solid rgba(52,68,74,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }

/* === READING PROGRESS === */
.reading-progress {
    position: fixed; top: 0; left: 0; width: 0%; height: 3px;
    background: #22919C; z-index: 9999; transition: width 0.1s linear;
}

/* === MOBILE SIDEBAR INLINE === */
.mobile-inline-cta { display: none; }
@media (max-width: 1023px) {
    .mobile-inline-cta { display: block; }
    .sidebar-desktop { display: none; }
}
@media (min-width: 1024px) {
    .sidebar-desktop {
        position: sticky;
        top: calc(var(--header-h, 121px) + 48px);
        align-self: start;
    }
}

/* === BLOG PRINT === */
@media print {
    .sidebar-desktop, .mobile-inline-cta, .in-content-cta,
    .reading-progress, .toc-sticky { display: none !important; }
    .blog-layout { grid-template-columns: 1fr; }
}


/* ==============================================
   BLOG LIST PAGE
   ============================================== */

/* === FEATURED HERO ARTICLE === */
.blog-featured {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a0a0a;
    text-decoration: none;
    color: inherit;
}
.blog-featured:hover .blog-featured-bg {
    transform: scale(1.03);
}
.blog-featured-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 0.5s ease;
}
.blog-featured-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.45) 50%, rgba(5,5,5,0.15) 100%);
}
.blog-featured-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.blog-featured .blog-hero-meta { color: rgba(255,255,255,0.55); }
.blog-featured .blog-hero-badge {
    background-color: rgba(191,205,200,0.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.blog-featured h2 {
    color: #fff !important;
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin: 0;
}
.blog-featured-excerpt {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
    margin: 0;
}
.blog-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: #22919C;
    color: #fff;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
    align-self: flex-start;
    min-height: auto;
}
.blog-featured:hover .blog-featured-cta {
    background: #1a7a84;
}
@media (max-width: 767px) {
    .blog-featured { min-height: 50vh; }
    .blog-featured-content { padding: 2rem 1.25rem 2.5rem; }
    .blog-featured h2 { font-size: clamp(1.5rem, 7vw, 2.2rem); }
    .blog-featured-excerpt { font-size: 0.95rem; }
}

/* === MAGAZINE GRID === */
.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 1023px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* === BLOG CARD === */
.blog-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(52,68,74,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}
.blog-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.blog-card-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #22919C;
    background: rgba(34,145,156,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    align-self: flex-start;
}
.blog-card-title {
    font-family: 'Futura PT', 'Futura', 'Century Gothic', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #34444A;
    line-height: 1.3;
    margin: 0;
}
.blog-card-excerpt {
    color: rgba(52,68,74,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}
.blog-card-meta {
    margin-top: auto;
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(52,68,74,0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}


/* ==============================================
   BLOG POST PAGE (breed dropdown override)
   ============================================== */
.blog-post-page .breed-dropdown {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
    background: #34444A; border-radius: 0 0 0.5rem 0.5rem;
    max-height: 240px; overflow-y: auto; display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.blog-post-page .breed-dropdown.open { display: block; }
.blog-post-page .breed-dropdown-item {
    padding: 0.6rem 1rem; cursor: pointer; font-size: 0.9rem;
    color: rgba(235,232,225,0.8); transition: background 0.15s;
}
.blog-post-page .breed-dropdown-item:hover, .blog-post-page .breed-dropdown-item.active {
    background: rgba(34,145,156,0.3); color: #fff;
}


/* ==============================================
   LEGAL PAGES
   ============================================== */
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #34444A;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #34444A;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.legal-content p {
    color: #34444A;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.legal-content ul {
    color: #34444A;
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}
.legal-content ul li {
    margin-bottom: 0.25rem;
}
.legal-content a {
    color: #22919C;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-content a:hover {
    color: #1a7a84;
}
