/* ============================================================
   Sicc Állatorvosi Rendelő – egyoldalas weboldal
   Letisztult, modern stílus · friss türkiz/zöld akcentus
   ============================================================ */

:root {
    --primary: #0f8f74;
    --primary-dark: #0a6f5a;
    --primary-soft: #e1f5ee;
    --amber: #d9912f;
    --navy: #1f3d36;
    --navy-soft: #2b4d45;
    --ink: #26322f;
    --muted: #64726d;
    --bg: #ffffff;
    --bg-soft: #f4faf7;
    --border: #dbeae4;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 12px 32px rgba(31, 61, 54, 0.10);
    --shadow-sm: 0 4px 14px rgba(31, 61, 54, 0.08);
    --font-sans: "Manrope", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset / alap ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-size: 1.02rem;
}

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

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 24px;
}

section {
    scroll-margin-top: 84px;
}

/* ---------- Gombok ---------- */
.btn {
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.btn-light {
    background: #fff;
    color: var(--navy);
}

.btn-light:hover {
    background: var(--primary-soft);
    color: var(--navy);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.btn-sm {
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
}

/* ---------- Fejléc / navigáció ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 46px;
    width: auto;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    background: none;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    padding: 0.5rem 0.7rem;
    border-radius: 8px;
    white-space: nowrap;
}

.main-nav > a:hover {
    color: var(--primary-dark);
    background: var(--primary-soft);
}

.main-nav > a.active {
    color: var(--primary-dark);
}

.main-nav .nav-cta {
    margin-left: 10px;
    padding: 0.55rem 1.2rem;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 45, 40, 0.85) 0%, rgba(15, 45, 40, 0.55) 55%, rgba(15, 45, 40, 0.35) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 90px;
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #cdeee2;
    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 1.12rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-location {
    display: grid;
    gap: 2px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-location strong {
    color: #fff;
    font-size: 1.05rem;
}

.hero-location a {
    color: #cdeee2;
    font-weight: 600;
}

.hero-location a:hover {
    color: #fff;
}

/* ---------- Szekciók ---------- */
.section {
    padding: 84px 0;
}

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

.section-head {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-head .eyebrow {
    margin-bottom: 12px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 14px;
}

.section-head .lead {
    color: var(--muted);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
}

/* ---------- Rólunk ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px;
}

.about-text p {
    margin-bottom: 18px;
}

.about-card img {
    border-radius: var(--radius);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-card-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--muted);
    text-align: center;
}

.motto {
    background: var(--navy);
    background-image: linear-gradient(rgba(15, 45, 40, 0.78), rgba(15, 45, 40, 0.78)), url('../img/hero-3.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: var(--radius);
    padding: 56px 40px;
    text-align: center;
}

.motto p {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    line-height: 1.3;
    max-width: 720px;
    margin: 0 auto 12px;
}

.motto footer {
    color: #cdeee2;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ---------- Szolgáltatások ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.svc-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.svc-card-head {
    padding: 28px;
}

.svc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.svc-icon svg {
    width: 26px;
    height: 26px;
}

.svc-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.svc-card-head > p {
    color: var(--muted);
    font-size: 0.98rem;
}

.svc-more {
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.svc-more summary,
.team-more summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 28px;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--primary-soft);
    transition: background 0.2s ease;
}

.svc-more summary::-webkit-details-marker,
.team-more summary::-webkit-details-marker {
    display: none;
}

.svc-more summary::after,
.team-more summary::after {
    content: "+";
    font-size: 1.3rem;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.svc-more[open] summary,
.team-more[open] summary {
    background: var(--primary-soft);
}

.svc-more[open] summary::after,
.team-more[open] summary::after {
    transform: rotate(45deg);
}

.svc-more-body {
    padding: 24px 28px 28px;
}

.svc-more-body p {
    margin-bottom: 14px;
}

.svc-more-body h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    margin: 20px 0 10px;
}

.svc-more-body h4:first-child {
    margin-top: 0;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.checklist li {
    position: relative;
    padding-left: 28px;
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.5em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
}

.svc-img-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 16px 0;
}

.svc-img-row img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.svc-note {
    background: var(--primary-soft);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 14px 16px;
    font-size: 0.96rem;
}

/* ---------- Aktualitások ---------- */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.news-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.news-card--featured {
    border-top: 4px solid var(--primary);
}

.news-card--wide {
    grid-column: 1 / -1;
}

.news-featured-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.news-featured-top h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.news-featured-top img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.news-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: var(--primary-soft);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.news-card p {
    color: var(--muted);
    margin-bottom: 12px;
}

.news-card a {
    font-weight: 700;
}

.news-group-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.news-grid .news-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-grid .news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.news-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-grid .news-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    padding: 16px 18px 6px;
}

.news-grid .news-card p {
    padding: 0 18px;
    font-size: 0.9rem;
    color: var(--muted);
    flex: 1;
}

.news-grid .news-card i {
    font-style: normal;
    display: block;
    padding: 12px 18px 18px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.news-more {
    text-align: center;
}

/* ---------- Áraink ---------- */
.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.price-card {
    padding: 28px;
}

.price-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--navy);
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--primary-soft);
}

.price-list {
    display: grid;
    gap: 4px;
}

.price-list > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--border);
}

.price-list dt {
    color: var(--ink);
    font-size: 0.95rem;
}

.price-list dd {
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
    font-size: 0.95rem;
}

.price-note {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--muted);
}

.price-foot {
    margin-top: 32px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

/* ---------- Munkatársak ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.team-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-card > img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-info h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.team-more {
    margin-top: auto;
}

.team-more summary {
    padding: 12px 18px;
    font-size: 0.9rem;
    justify-content: flex-start;
}

.team-more summary::after {
    margin-left: auto;
}

.team-more[open] {
    border-top: 1px solid var(--border);
}

.team-more p {
    padding: 14px 18px 0;
    font-size: 0.92rem;
    color: var(--ink);
}

/* ---------- Galéria ---------- */
.gallery-group-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.gallery-group-title:not(:first-of-type) {
    margin-top: 44px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.gallery-item {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ---------- Nyitvatartás ---------- */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.hours-card {
    padding: 30px;
}

.hours-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.hours-address {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.hours-phone {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.hours-phone a {
    font-weight: 700;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
}

.hours-table th,
.hours-table td {
    text-align: left;
    padding: 9px 6px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hours-table th {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    width: 34%;
}

.hours-table td {
    color: var(--ink);
}

.hours-note {
    background: var(--primary-soft);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 12px 14px;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 14px;
}

.hours-fb a {
    font-weight: 700;
}

/* ---------- Kapcsolat ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--ink);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card span:last-child {
    font-size: 0.95rem;
    color: var(--muted);
}

.contact-card strong {
    color: var(--navy);
}

.map-wrap {
    display: grid;
    gap: 20px;
}

.map-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-sm);
}

.map-box h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.map-box iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: var(--radius-sm);
    display: block;
}

/* ---------- Lábléc ---------- */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.95rem;
}

.site-footer h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 14px;
}

.footer-nav {
    display: grid;
    gap: 8px;
}

.footer-nav a,
.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-nav a:hover,
.site-footer a:hover {
    color: #fff;
}

.site-footer p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* ---------- Reveal animáció ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 20, 18, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 88vw;
    max-height: 84vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 88vw;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-content figcaption {
    color: #fff;
    margin-top: 12px;
    font-size: 0.95rem;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close svg {
    width: 22px;
    height: 22px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 18px;
}

.lightbox-next {
    right: 18px;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: none;
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 0.92rem;
    max-width: 760px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: none;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.88rem;
    transition: background 0.2s ease;
}

.cookie-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-btn-accept {
    background: var(--primary);
    border-color: var(--primary);
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

/* ---------- Vissza a tetejére ---------- */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 150;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, background 0.2s ease, transform 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ---------- Reszponzív ---------- */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .svc-grid,
    .price-grid,
    .news-featured,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        padding: 16px 20px 20px;
        gap: 6px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease;
    }

    .main-nav.open {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        opacity: 1;
    }

    .main-nav > a {
        padding: 0.8rem 1rem;
    }

    .main-nav .nav-cta {
        margin: 12px 0 0;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 56px 0;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-locations {
        flex-direction: column;
        gap: 14px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-featured-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-featured-top img {
        width: 100%;
        height: 160px;
    }

    .price-list > div {
        flex-direction: column;
        gap: 2px;
        align-items: flex-start;
    }

    .price-list dd {
        white-space: normal;
    }

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-slide {
        transition: none;
    }
}
