﻿/* Pfotenparadies – Stylesheet v2 */

:root {
    --primary: #FF6B35;
    --primary-dark: #e55a28;
    --secondary: #2EC4B6;
    --accent: #FFD166;
    --bg: #FFFFFF;
    --bg-gray: #F8F9FA;
    --text: #333333;
    --muted: #6c757d;
    --light: #999999;
    --shadow: 0 4px 24px rgba(0,0,0,.08);
    --radius: 12px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-y: clamp(3.5rem, 7vw, 6rem);
    --header-h: 72px;
    --scroll-pad: calc(var(--header-h) + 12px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-pad);
    overflow-x: clip;
}

html.no-js .reveal,
html.no-js .reveal-left,
html.no-js .reveal-right { opacity: 1; transform: none; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: clip;
}

main { overflow-x: clip; }

/* ---- Bild-System (einheitliche Darstellung) ---- */
img {
    display: block;
    max-width: 100%;
    border: 0;
}

.img-cover {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.media-frame {
    position: relative;
    overflow: hidden;
    background: var(--bg-gray);
    display: block;
    flex-shrink: 0;
}

.media-frame > img,
.media-frame.img-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.media-frame--3-2   { aspect-ratio: 3 / 2; width: 100%; }
.media-frame--5-4   { aspect-ratio: 5 / 4; width: 100%; }
.media-frame--category { aspect-ratio: 16 / 10; width: 100%; min-height: 200px; }
.media-frame--about { aspect-ratio: 7 / 5; width: 100%; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame--circle { aspect-ratio: 1 / 1; border-radius: 50%; }
.media-frame--avatar {
    aspect-ratio: 1 / 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.media-frame.is-loading {
    background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
    background-size: 200% 100%;
    animation: shimmer 1.2s infinite;
}

.media-frame.is-error {
    background: var(--bg-gray);
}

.media-frame.is-error::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' fill='%23ccc' viewBox='0 0 16 16'%3E%3Cpath d='M6.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z'/%3E%3Cpath d='M2 0h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2zm10 12.5V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10.5l3.5-3.5 2 2 3.5-4 3.5 3.5z'/%3E%3C/svg%3E") center / 40px no-repeat;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.3; }

a { text-decoration: none; transition: color .25s, background .25s, transform .25s, box-shadow .25s; }

.row > [class*="col-"] { min-width: 0; }

.row.g-4 > [class*="col-"] { display: flex; flex-direction: column; }
.row.g-4 > [class*="col-"] > * { flex: 1; width: 100%; }

/* Buttons */
.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
    font-weight: 600;
    border-radius: 50px;
    padding: .65rem 1.6rem;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    font-weight: 600;
    border-radius: 50px;
    border-width: 2px;
    padding: .65rem 1.6rem;
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; }

/* Sections */
.section { padding: var(--section-y) 0; }
.section--gray { background: var(--bg-gray); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.75rem; }
.section-badge {
    display: inline-block;
    background: rgba(255,107,53,.1);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: .85rem;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: .85rem; }
.section-subtitle { color: var(--muted); margin: 0; font-size: clamp(.98rem, 2vw, 1.08rem); }

/* Reveal */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity .55s ease, transform .55s ease;
}
.reveal { transform: translateY(20px); }
.reveal-left { transform: translateX(-20px); }
.reveal-right { transform: translateX(20px); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible {
    opacity: 1; transform: none;
}

/* Top bar */
.top-bar { background: var(--text); color: rgba(255,255,255,.88); font-size: .84rem; padding: .5rem 0; }
.top-bar-info { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; }
.top-bar-info i { color: var(--primary); margin-right: .35rem; }
.top-bar-promo { color: var(--accent); white-space: nowrap; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 1030;
    background: var(--bg); box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.navbar { padding: .7rem 0; }
.navbar-brand {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-head); font-weight: 800;
    font-size: clamp(1.1rem, 3vw, 1.45rem); color: var(--text) !important;
}
.brand-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    display: grid; place-items: center; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.navbar-nav .nav-link {
    color: var(--text) !important; font-weight: 500;
    padding: .45rem .85rem !important; position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-toggler { border: 1px solid rgba(0,0,0,.12); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(255,107,53,.25); }

/* Hero */
.hero {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
    background: linear-gradient(135deg, #fff5f0, #f0faf9 50%, #fff);
    overflow: hidden;
}
.hero__badge {
    display: inline-flex; align-items: center; gap: .45rem;
    background: rgba(46,196,182,.14); color: #1f8f84;
    font-weight: 600; font-size: .88rem;
    padding: .45rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
    margin-bottom: 1rem; line-height: 1.12;
}
.hero__title span { color: var(--primary); }
.hero__text { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; }
.hero__stats strong { display: block; font-size: 1.5rem; color: var(--primary); font-family: var(--font-head); }
.hero__stats span { font-size: .84rem; color: var(--muted); }

.hero__visual {
    position: relative;
    width: min(100%, 440px);
    height: min(440px, 88vw);
    margin: 0 auto;
}
.hero__visual-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64%;
    height: 64%;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: var(--shadow);
}
.hero__visual-item {
    position: absolute;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
    border-radius: 14px;
    animation: bob 5s ease-in-out infinite;
}
.hero__visual-item--1 { width: 28%; height: 28%; top: 2%; right: 4%; }
.hero__visual-item--2 { width: 24%; height: 24%; bottom: 8%; right: 0; animation-delay: .8s; }
.hero__visual-item--3 { width: 26%; height: 26%; top: 6%; left: 2%; animation-delay: 1.4s; }

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Feature card */
.card-feature {
    background: #fff; border-radius: var(--radius); padding: 1.75rem 1.35rem;
    text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.05);
    border: 1px solid rgba(0,0,0,.04); height: 100%;
    transition: transform .25s, box-shadow .25s;
}
.card-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-feature__icon {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem;
    display: grid; place-items: center; font-size: 1.6rem;
}
.card-feature__icon--orange { background: rgba(255,107,53,.12); color: var(--primary); }
.card-feature__icon--teal { background: rgba(46,196,182,.12); color: var(--secondary); }
.card-feature__icon--yellow { background: rgba(255,209,102,.22); color: #c89400; }
.card-feature__icon--purple { background: rgba(139,92,246,.12); color: #7c3aed; }
.card-feature__title { font-size: 1.05rem; margin-bottom: .5rem; }
.card-feature__text { color: var(--muted); font-size: .93rem; margin: 0; }

/* Pet card */
.card-pet {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05); height: 100%;
    display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.card-pet:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-pet__media { width: 100%; }
.card-pet__body { padding: 1.15rem; flex: 1; text-align: center; }
.card-pet__body h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.card-pet__body p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Category card */
.card-category {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .25s, box-shadow .25s;
}
.card-category:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-category__media { width: 100%; }
.card-category:hover .card-category__media img { transform: scale(1.05); }
.card-category__media img { transition: transform .45s ease; }
.card-category__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72), transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.15rem; color: #fff;
}
.card-category__overlay h3 { color: #fff; font-size: 1.05rem; margin: 0 0 .2rem; }
.card-category__overlay span { font-size: .82rem; opacity: .9; }

/* Product card */
.card-product {
    background: #fff; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05); height: 100%;
    display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,.04);
    transition: transform .25s, box-shadow .25s;
}
.card-product:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-product__media { position: relative; width: 100%; }
.card-product__media img { transition: transform .4s ease; }
.card-product:hover .card-product__media img { transform: scale(1.04); }
.card-product__badge {
    position: absolute; top: 10px; left: 10px; z-index: 1;
    background: var(--primary); color: #fff; font-size: .72rem; font-weight: 600;
    padding: .25rem .65rem; border-radius: 50px;
}
.card-product__badge.badge-new { background: var(--secondary); }
.card-product__badge.badge-sale { background: var(--accent); color: var(--text); }
.card-product__body { padding: 1.15rem; display: flex; flex-direction: column; flex: 1; }
.card-product__rating { color: var(--accent); font-size: .82rem; margin-bottom: .4rem; }
.card-product__rating span { color: var(--muted); margin-left: .25rem; }
.card-product__body h3 {
    font-size: .95rem; line-height: 1.4; margin-bottom: .45rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-product__price { display: flex; gap: .5rem; align-items: center; margin-bottom: .85rem; }
.card-product__price .current { font-size: 1.15rem; font-weight: 700; color: var(--primary); font-family: var(--font-head); }
.card-product__price .old { color: var(--light); text-decoration: line-through; font-size: .88rem; }
.card-product__body .btn-buy { margin-top: auto; }

/* Why card */
.card-why {
    background: #fff; border-radius: var(--radius); padding: 1.75rem 1.25rem;
    text-align: center; height: 100%; border: 2px solid rgba(0,0,0,.04);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card-why:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.card-why__icon {
    width: 56px; height: 56px; border-radius: 10px; margin: 0 auto .85rem;
    display: grid; place-items: center; font-size: 1.35rem; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.card-why h3 { font-size: 1rem; margin-bottom: .4rem; }
.card-why p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Service card */
.card-service {
    background: #fff; border-radius: var(--radius); padding: 2rem 1.35rem;
    text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.05);
    height: 100%; display: flex; flex-direction: column;
    transition: transform .25s, box-shadow .25s;
}
.card-service:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-service__icon {
    width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1rem;
    display: grid; place-items: center; font-size: 1.75rem;
    background: var(--bg-gray); color: var(--primary);
    transition: background .25s, color .25s;
}
.card-service:hover .card-service__icon { background: var(--primary); color: #fff; }
.card-service h3 { font-size: 1.05rem; margin-bottom: .55rem; }
.card-service p { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; flex: 1; }
.card-service__link { color: var(--primary); font-weight: 600; font-size: .88rem; margin-top: auto; }
.card-service__link i { transition: transform .25s; }
.card-service__link:hover i { transform: translateX(4px); }

/* About */
.about__media { position: relative; max-width: 500px; margin: 0 auto; padding: 1rem 1rem 2.5rem; }
.about__media-main { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.about__media-sub {
    position: absolute; bottom: 0; right: 0;
    width: 130px; height: 130px;
    border: 4px solid #fff; box-shadow: var(--shadow);
    border-radius: var(--radius);
}
.hero__visual-item.media-frame {
    aspect-ratio: unset;
}
.about__badge {
    position: absolute; top: 0; left: 0; background: var(--primary); color: #fff;
    padding: .85rem 1rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
}
.about__badge strong { display: block; font-size: 1.65rem; font-family: var(--font-head); line-height: 1; }
.about__badge span { font-size: .75rem; opacity: .95; }
.about__list { list-style: none; padding: 0; margin: 1.25rem 0; }
.about__list li { display: flex; gap: .65rem; margin-bottom: .75rem; font-size: .93rem; color: var(--muted); }
.about__list i { color: var(--secondary); flex-shrink: 0; margin-top: .15rem; }

/* Review card */
.card-review {
    background: #fff; border-radius: var(--radius); padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.05); height: 100%;
    display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,.04);
}
.card-review__stars { color: var(--accent); font-size: .82rem; margin-bottom: .65rem; }
.card-review p { color: var(--muted); font-style: italic; font-size: .93rem; flex: 1; margin-bottom: 1rem; }
.card-review__author { display: flex; align-items: center; gap: .65rem; margin-top: auto; }
.card-review__avatar {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.card-review__author strong { display: block; font-size: .9rem; }
.card-review__author span { font-size: .78rem; color: var(--muted); }

/* Offer */
.section--offer {
    background: linear-gradient(135deg, var(--primary), #ff8a5c 50%, var(--accent));
    color: #fff; overflow: hidden;
}
.offer { text-align: center; position: relative; z-index: 1; }
.offer h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.35rem); margin-bottom: .75rem; }
.offer p { max-width: 580px; margin: 0 auto 1.35rem; font-size: 1.02rem; opacity: .96; }
.offer .btn-light { border-radius: 50px; font-weight: 700; color: var(--primary); padding: .75rem 2rem; }
.offer__timer { display: flex; justify-content: center; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.offer__timer div {
    background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
    border-radius: 8px; padding: .55rem .85rem; min-width: 62px; text-align: center;
}
.offer__timer span { display: block; font-size: 1.35rem; font-weight: 700; font-family: var(--font-head); line-height: 1.2; }
.offer__timer small { font-size: .72rem; opacity: .9; }

/* FAQ */
.accordion-item { border: none; margin-bottom: .65rem; border-radius: var(--radius) !important; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.accordion-button {
    font-family: var(--font-head); font-weight: 600; font-size: .97rem;
    padding: 1rem 1.2rem; box-shadow: none !important;
}
.accordion-button:not(.collapsed) { background: rgba(255,107,53,.08); color: var(--primary); }
.accordion-body { color: var(--muted); line-height: 1.75; font-size: .93rem; padding: 0 1.2rem 1rem; }

/* Contact */
.contact-info-card, .contact-form {
    background: #fff; border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,.05); padding: 1.65rem;
}
.contact-form { box-shadow: var(--shadow); }
.contact-info-item { display: flex; gap: .85rem; margin-bottom: 1.15rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 46px; height: 46px; border-radius: 8px; flex-shrink: 0;
    display: grid; place-items: center; background: rgba(255,107,53,.1); color: var(--primary);
}
.contact-info-item h5 { font-size: .92rem; margin-bottom: .15rem; }
.contact-info-item p { font-size: .88rem; color: var(--muted); margin: 0; word-break: break-word; }
.contact-form label { display: block; font-weight: 500; font-size: .88rem; margin-bottom: .35rem; }
.contact-form .form-control {
    border: 2px solid #e9ecef; border-radius: 8px; padding: .7rem .9rem;
}
.contact-form .form-control:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,53,.15);
}
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.05); aspect-ratio: 16/7; min-height: 260px; }
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Legal */
.page-hero {
    padding: calc(var(--scroll-pad) + 1.5rem) 0 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,107,53,.08), rgba(46,196,182,.08));
}
.page-hero h1 { font-size: clamp(1.65rem, 4vw, 2.35rem); margin-bottom: .5rem; }
.page-hero p { color: var(--muted); max-width: 580px; margin: 0 auto; }
.legal-content { padding: 2.5rem 0 var(--section-y); }
.legal-content h2 { font-size: 1.35rem; color: var(--primary); margin: 2rem 0 .75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.08rem; margin: 1.25rem 0 .5rem; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.8; font-size: .95rem; }

/* Footer */
.site-footer { background: #1a1a2e; color: rgba(255,255,255,.75); }
.footer-top { padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.footer-logo { display: inline-flex; align-items: center; gap: .55rem; color: #fff !important; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; margin-bottom: .85rem; }
.footer-desc { font-size: .88rem; line-height: 1.7; max-width: 340px; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .55rem; flex-wrap: wrap; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
    display: grid; place-items: center; color: #fff;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-head); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .88rem; }
.footer-links a:hover { color: var(--primary); }
.footer-links li { margin-bottom: .45rem; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .55rem; margin-bottom: .55rem; font-size: .88rem; line-height: 1.5; }
.footer-contact i { color: var(--primary); flex-shrink: 0; margin-top: .15rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0; font-size: .82rem; }
.footer-payments { display: flex; align-items: center; flex-wrap: wrap; gap: .55rem; }

/* Cookie, toast, back-to-top */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1040;
    background: var(--text); color: rgba(255,255,255,.92);
    padding: .85rem 0; transform: translateY(100%); transition: transform .35s;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-content p { margin: 0; font-size: .86rem; flex: 1 1 260px; }
.cookie-content a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: .5rem; }

.site-toast {
    position: fixed; left: 50%; bottom: 1.25rem; z-index: 1050;
    transform: translateX(-50%) translateY(120%); opacity: 0;
    background: var(--text); color: #fff; padding: .75rem 1.15rem;
    border-radius: 50px; display: flex; align-items: center; gap: .5rem;
    font-size: .88rem; box-shadow: var(--shadow); max-width: calc(100% - 2rem);
    transition: transform .35s, opacity .35s, bottom .35s;
}
.site-toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.site-toast i { color: var(--secondary); }

.back-to-top {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1035;
    width: 44px; height: 44px; border: 0; border-radius: 50%;
    background: var(--primary); color: #fff; display: grid; place-items: center;
    opacity: 0; visibility: hidden; cursor: pointer; box-shadow: var(--shadow);
    transition: opacity .25s, visibility .25s, transform .25s, bottom .25s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

body.has-cookie .back-to-top { bottom: 5.5rem; }
body.has-cookie .site-toast.is-visible { bottom: 5.5rem; }

/* Responsive */
@media (max-width: 991.98px) {
    :root { --header-h: 68px; }
    .navbar-collapse { padding-top: .5rem; }
    .navbar-cta { width: 100%; }
    .hero__visual { height: min(380px, 85vw); }
    .about__media { margin-bottom: 1rem; }
}

@media (max-width: 767.98px) {
    .hero__actions .btn { width: 100%; }
    .hero__visual-item--3 { display: none; }
    .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
    .hero__stats strong { font-size: 1.2rem; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-actions { justify-content: center; width: 100%; }
    .footer-bottom { text-align: center; }
    .footer-payments { justify-content: center; }
}

@media (max-width: 575.98px) {
    .hero__stats { grid-template-columns: 1fr; }
    .hero__visual-item--2 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
