/* ══════════════════════════════════════════════
   KEMGAS — Clean Professional Theme
   ══════════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent: #0A66C2;
    --accent-dark: #084fa0;
    --text: #1a1a1a;
    --text-dim: #555;
    --text-muted: #888;
    --border: rgba(0,0,0,0.09);
    --bg: #ffffff;
    --bg-light: #f5f7fa;
    --bg-dark: #0f1923;
    --radius: 14px;
    --radius-sm: 8px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 2px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ── Header ── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 64px;
    background: transparent;
    transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-logo-container {
    display: flex;
    align-items: center;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}

.header-logo-img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s;
}

.header-logo-img:hover { opacity: 0.8; }

.header-nav {
    display: flex;
    gap: 2.5rem;
}

.header-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.header-nav a:hover { color: #fff; }

.header--scrolled .header-nav a { color: var(--text-dim); }
.header--scrolled .header-nav a:hover { color: var(--text); }

.header-phone {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}

.header-phone:hover { opacity: 0.7; }
.header--scrolled .header-phone { color: var(--accent); }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fff;
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.header--scrolled .menu-toggle span { background: var(--text); }

.menu-toggle.active span:first-child { transform: rotate(45deg) translate(2.5px, 2.5px); }
.menu-toggle.active span:last-child  { transform: rotate(-45deg) translate(2.5px, -2.5px); }

/* ── Mobile Drawer ── */
.menu-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.menu-backdrop.active { opacity: 1; pointer-events: auto; }

.menu-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #fff;
    border-left: 1px solid var(--border);
    z-index: 95;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 32px;
    transition: right 0.5s var(--ease);
}
.menu-drawer.active { right: 0; }

.menu-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.menu-drawer a {
    color: var(--text);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 200;
    padding: 0.75rem 0;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.menu-drawer a:hover { color: var(--accent); }

.menu-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.menu-footer a { font-size: 0.85rem !important; color: var(--text-dim) !important; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 18, 30, 0.55) 0%,
        rgba(10, 18, 30, 0.45) 60%,
        rgba(10, 18, 30, 0.65) 100%
    );
}

/* Hero two-column inner */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 0 24px;
    margin-top: 0;
}

/* Hero info card */
.hero-wrap {
    position: relative;
}

.hero-info-card {
    display: none;
}

@media (min-width: 901px) {
    .hero-info-card {
        display: block;
        position: absolute;
        top: 80px;
        right: 80px;
        width: 250px;
        background: rgba(255,255,255,0.07);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.13);
        border-radius: 12px;
        padding: 1.25rem 1.4rem;
        z-index: 3;
    }
}

.hero-info-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.hero-info-about {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-info-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1rem 0;
}

.hero-info-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.6rem;
}

.hero-hours-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0.75rem;
}

.hero-hours-table td {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    padding: 0.35rem 0;
    font-weight: 300;
}

.hero-hours-table td:first-child {
    color: rgba(255,255,255,0.4);
    width: 90px;
}

.hero-info-summer {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,180,0,0.08);
    border: 1px solid rgba(255,180,0,0.2);
    border-radius: 6px;
    padding: 0.45rem 0.6rem;
}

.hero-info-summer span:first-child {
    color: #ffb400;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.hero-info-summer strong {
    color: #ffb400;
    font-weight: 500;
}

.hero-info-automat {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.hero-info-automat strong {
    color: #fff;
    font-weight: 500;
}

/* Mobile hours section — hidden on desktop, shown on mobile */
.mobile-hours-section {
    display: none;
}

@media (max-width: 900px) {
    .hero {
        padding: 100px 20px 48px;
        min-height: auto;
    }
    .hero-inner { padding: 0; }

    .mobile-hours-section {
        display: block;
        background: var(--bg-dark);
        padding: 2.5rem 24px;
    }
    .mobile-hours-inner {
        max-width: 520px;
        margin: 0 auto;
    }
    .mobile-hours-section .hero-info-name {
        font-size: 1.2rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 0.6rem;
    }
    .mobile-hours-section .hero-info-about {
        font-size: 0.95rem;
        color: rgba(255,255,255,0.6);
        line-height: 1.7;
    }
    .mobile-hours-section .hero-info-divider {
        height: 1px;
        background: rgba(255,255,255,0.1);
        margin: 1.25rem 0;
    }
    .mobile-hours-section .hero-info-label {
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.4);
        margin-bottom: 0.75rem;
    }
    .mobile-hours-section .hero-hours-table {
        border-collapse: collapse;
        width: 100%;
        margin-bottom: 1rem;
    }
    .mobile-hours-section .hero-hours-table td {
        font-size: 1rem;
        color: rgba(255,255,255,0.8);
        padding: 0.5rem 0;
        font-weight: 300;
    }
    .mobile-hours-section .hero-hours-table td:first-child {
        color: rgba(255,255,255,0.45);
        width: 120px;
    }
    .mobile-hours-section .hero-hours-table tr {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-hours-section .hero-info-summer {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        font-size: 0.95rem;
        color: rgba(255,255,255,0.6);
        background: rgba(255,180,0,0.08);
        border: 1px solid rgba(255,180,0,0.2);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        margin-top: 0.5rem;
    }
    .mobile-hours-section .hero-info-summer span:first-child {
        color: #ffb400;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    .mobile-hours-section .hero-info-summer strong { color: #ffb400; }
    .mobile-hours-section .hero-info-automat {
        font-size: 1rem;
        color: rgba(255,255,255,0.65);
        font-weight: 300;
    }
    .mobile-hours-section .hero-info-automat strong {
        color: #fff;
        font-weight: 500;
    }
}

.hero-tag {
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.hero-year {
    font-style: normal;
    font-weight: 200;
    color: #fff;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10,102,194,0.35);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 0.9rem 2rem;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-sm);
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    display: inline-block;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
}

.btn-order {
    display: block;
    width: 100%;
    text-align: center;
    background: #4a4e54;
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    margin-top: 1.25rem;
    cursor: default;
}

/* ── Partners Strip ── */
.partners-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    background: var(--bg);
}

.partners-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.strip-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    font-weight: 400;
}

.partners-logos {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.partners-logos img {
    height: 32px;
    width: auto;
    opacity: 0.55;
    transition: opacity 0.3s;
    filter: grayscale(20%);
}
.partners-logos img:hover { opacity: 0.8; }

/* ── Labels ── */
.label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* ── Page Sections ── */
.page-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.page-section--light {
    background: var(--bg-light);
}

.page-section--dark {
    background: var(--bg-dark);
    border-top: none;
}

.page-section--compact {
    padding: 48px 0;
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-header--light h2 { color: #fff; }
.section-header--light .label { color: rgba(255,255,255,0.5); }

.section-desc {
    color: var(--text-dim);
    font-size: 0.92rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Shop Grid ── */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.shop-grid--4 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ── Shop Card ── */
.shop-card {
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s var(--ease);
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

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

.shop-img {
    width: 100%;
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 1rem;
}

.shop-img--blank {
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: rgba(10,102,194,0.08);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    align-self: flex-start;
}

.product-tag--green { color: #1a8c4e; background: rgba(26,140,78,0.08); }
.product-tag--red   { color: #c0392b; background: rgba(192,57,43,0.08); }

.shop-body h3 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}

.shop-body p {
    color: var(--text-dim);
    font-size: 0.86rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1rem;
    flex: 1;
}

/* ── Pricing ── */
.price-row {
    display: flex;
    gap: 1.25rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--border);
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 400;
}

.price-val {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

/* ── Subsection Divider ── */
.subsection-divider {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.subsection-divider h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.subsection-divider p {
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 300;
}

/* ── LPG Banner ── */
.lpg-banner {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lpg-text h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
}

.lpg-text p {
    color: rgba(255,255,255,0.55);
    font-size: 0.86rem;
    font-weight: 300;
}

.lpg-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-left: auto;
    white-space: nowrap;
}

.lpg-price span {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
}

/* ── About ── */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.about-text .label { margin-bottom: 0.75rem; }

.about-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1rem;
}

.about-meta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.meta-icon {
    font-size: 1.1rem;
    margin-top: 2px;
}

.meta-block strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 3px;
}

.meta-block p {
    font-size: 0.88rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.6;
}

/* ── Contact ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem;
    align-items: stretch;
    min-height: 420px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-block h3 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.contact-block p,
.contact-block a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    line-height: 1.7;
    display: block;
    transition: color 0.3s;
}
.contact-block a:hover { color: #fff; }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe { width: 100%; height: 100%; min-height: 400px; display: block; }

/* ── Footer ── */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.footer p {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }

.payment-icons { display: flex; gap: 0.75rem; }
.payment-icons img { height: 20px; opacity: 0.4; }

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #00e676;
    box-shadow: 0 0 8px rgba(0,230,118,0.5);
    animation: dot-blink 3s ease-in-out infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Feature Layout (alternating image + text) ── */
.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.feature-layout--reverse {
    direction: rtl;
}
.feature-layout--reverse > * { direction: ltr; }

.feature-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.feature-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.feature-img--zoomout img {
    height: auto;
    object-fit: unset;
}

.feature-text .label { margin-bottom: 0.75rem; }

.feature-text h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.feature-text p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 0.85rem;
}

.service-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 300;
    padding-left: 1.25rem;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}

/* ── Automat Section ── */
.automat-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.automat-text .label { color: rgba(255,255,255,0.45); }

.automat-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 200;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.automat-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 0.85rem;
}

.automat-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.automat-feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-num {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.automat-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.automat-img-main {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 3/4;
    grid-column: 1 / -1;
}

.automat-img-secondary {
    display: none;
}

/* ── Accent CTA section ── */
.page-section--map {
    border-top: 2px solid rgba(10,102,194,0.35);
    border-bottom: 2px solid rgba(10,102,194,0.35);
}

.page-section--accent {
    background: var(--accent);
    border-top: none;
}

.page-section--accent .label { color: rgba(255,255,255,0.6); }
.page-section--accent .cta-center h2 { color: #fff; }
.page-section--accent .cta-center > p { color: rgba(255,255,255,0.7); }

.page-section--accent .cta-phone-btn {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.page-section--accent .cta-phone-btn:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.18);
}

.page-section--accent .cta-phone-label { color: rgba(255,255,255,0.55); }
.page-section--accent .cta-phone-num   { color: #fff; }

/* ── Om Oss Section ── */
.om-oss-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.om-oss-text h2 {
    color: #fff;
    margin: 0.5rem 0 1rem;
}

.om-oss-text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.om-oss-hours .label {
    display: block;
    margin-bottom: 1rem;
}

.hours-table {
    border-collapse: collapse;
    width: 100%;
}

.hours-table td {
    padding: 0.45rem 0;
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 300;
}

.hours-table td:first-child {
    width: 110px;
    color: rgba(255,255,255,0.45);
}

.hours-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-lunch {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.hours-automat {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.hours-automat strong {
    color: #fff;
    font-weight: 500;
}

.summer-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.3);
    border-radius: 6px;
    width: fit-content;
}

.summer-icon {
    font-size: 1.1rem;
    color: #ffb400;
    line-height: 1;
}

.summer-box strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffb400;
    letter-spacing: 0.05em;
}

.summer-box span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

@media (max-width: 768px) {
    .om-oss-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ── LPG Hero Banner (top of produkter.html) ── */
.lpg-hero {
    background: #0f1923;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lpg-hero-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.lpg-hero-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    flex-wrap: wrap;
}

.lpg-hero-text h2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
}

.lpg-sub {
    font-weight: 300;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-transform: none;
    letter-spacing: 0;
}

.lpg-hero-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1;
    margin: 0;
}

.lpg-hero-price {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.lpg-big-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}

.lpg-big-price em {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: normal;
    color: rgba(255,255,255,0.5);
}

/* ── Full-bleed Map with floating card ── */
.map-fullbleed {
    position: relative;
    height: 480px;
    margin-top: 2rem;
}

.map-fullbleed iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(15%) contrast(1.02);
}

.map-card {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1100px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border: 1px solid var(--border);
}

.map-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.map-card-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.map-card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 500;
}

.map-card-val {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 400;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

a.map-card-val:hover { color: var(--accent); }

/* ── Map Layout (front page) ── */
.map-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 3rem;
    align-items: stretch;
    min-height: 440px;
}

.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 440px;
}

.map-embed iframe { width: 100%; height: 100%; min-height: 440px; display: block; }

.map-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    justify-content: center;
}

.map-info .contact-block h3 {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.map-info .contact-block p,
.map-info .contact-block a {
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 300;
    text-decoration: none;
    line-height: 1.7;
    display: block;
    transition: color 0.3s;
}
.map-info .contact-block a:hover { color: var(--accent); }

/* ── Page Hero (produkter.html) ── */
.page-hero {
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.page-hero--compact {
    padding: 80px 0 0;
}

.page-hero--compact .container {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.page-hero h1 {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0;
    white-space: nowrap;
}

.page-hero p {
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 300;
    margin: 0;
}

.page-hero p a {
    color: var(--accent);
    text-decoration: none;
}

/* ── Product Toolbar (search + filters) ── */
.product-toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-search {
    flex: 0 0 auto;
    width: 220px;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.product-search:focus {
    border-color: var(--accent);
}

.product-search::placeholder {
    color: var(--text-muted);
}

.filter-btns {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: #fff;
    font-size: 0.78rem;
    font-family: inherit;
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.no-results {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 3rem 0;
}

/* ── Nav active ── */
.nav-active {
    color: var(--accent) !important;
}

/* ── CTA Center (contact section) ── */
.cta-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-center .label { color: rgba(255,255,255,0.45); }

.cta-center h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 200;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.cta-center > p {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.cta-contacts {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 1.2rem 2rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255,255,255,0.04);
}

.cta-phone-btn:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
}

.cta-phone-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}

.cta-phone-num {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.01em;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .about-photo { order: -1; }
    .about-photo img { height: 360px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .lpg-banner { flex-direction: column; align-items: flex-start; }
    .lpg-price { margin-left: 0; }
    .feature-layout { grid-template-columns: 1fr; gap: 3rem; }
    .feature-layout--reverse { direction: ltr; }
    .feature-img { order: -1; }
    .feature-img img { height: 340px; }
    .feature-img--zoomout img { height: auto; object-fit: unset; }
    .automat-layout { grid-template-columns: 1fr; gap: 3rem; }
    .map-layout { grid-template-columns: 1fr; }
    .map-embed { min-height: 340px; }
    .map-embed iframe { min-height: 340px; }
    .lpg-hero-inner { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 768px) {
    .header { padding: 0 20px; }
    .header-nav, .header-phone { display: none; }
    .menu-toggle { display: flex; }
    .header-logo-img { height: 34px; }
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 1rem; line-height: 1.7; }
    .page-section { padding: 56px 0; }
    .shop-grid { grid-template-columns: 1fr 1fr; }
    .shop-grid--4 { grid-template-columns: 1fr 1fr; }
    .shop-img { height: 180px; }
    .shop-body { padding: 1.1rem 1.1rem 1.25rem; }
    .shop-body h3 { font-size: 0.95rem; }
    .shop-body p { font-size: 0.82rem; }
    .price-val { font-size: 1rem; }
    .product-tag { font-size: 0.62rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .map-fullbleed { height: auto; margin-top: 1rem; }
    .map-fullbleed iframe { height: 260px; }
    .map-card { position: static; transform: none; width: 100%; margin: 0; border-radius: 0 0 var(--radius) var(--radius); padding: 1.25rem; }
    .map-card-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .lpg-hero { padding: 14px 0; }
    .lpg-hero-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .lpg-hero-text { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .lpg-hero-price { flex-direction: row; align-items: center; gap: 1rem; flex-wrap: wrap; }
    .lpg-big-price { font-size: 1.6rem; }
    .page-hero--compact .container { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
    .page-hero h1 { font-size: 1.2rem; }
    .product-toolbar { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .product-search { width: 100%; font-size: 1rem; padding: 0.65rem 0.9rem; }
    .filter-btn { padding: 0.55rem 1rem; font-size: 0.8rem; min-height: 40px; }
    .automat-features { flex-wrap: wrap; gap: 1.25rem; }
    .automat-feature { flex: 1 1 calc(50% - 0.625rem); }
    .cta-contacts { flex-direction: column; align-items: center; }
    .cta-phone-btn { width: 100%; max-width: 300px; min-height: 56px; }
    .subsection-divider { padding: 2rem 0 1.5rem; }
    .partners-logos { gap: 1.5rem; }
    .partners-logos img { height: 26px; }
    .om-oss-layout { gap: 2rem; }
    .feature-text p { color: rgba(255,255,255,0.65); }
    .page-section--light .feature-text p { color: var(--text-dim); }
    .summer-box { width: 100%; }
    .menu-footer a { min-height: 40px; display: flex; align-items: center; }
    .btn-order { min-height: 44px; display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-grid--4 { grid-template-columns: 1fr; }
    .shop-img { height: 200px; }
    .hero-title { font-size: 1.9rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-hours-table td { font-size: 0.8rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions a { width: 100%; text-align: center; max-width: 300px; }
    .btn-primary, .btn-ghost { padding: 0.9rem 1.5rem; font-size: 0.9rem; min-height: 48px; }
    .partners-strip .container { gap: 1rem; flex-direction: column; }
    .partners-logos { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
    .partners-logos img { height: 24px; }
    .map-card-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .map-card-val { font-size: 0.85rem; }
    .map-card { padding: 1rem; }
    .page-section { padding: 44px 0; }
    .page-section--compact { padding: 32px 0; }
    .section-header { margin-bottom: 2rem; }
    .filter-btns { gap: 0.3rem; flex-wrap: wrap; }
    .filter-btn { font-size: 0.82rem; padding: 0.55rem 0.85rem; }
    .footer-grid { gap: 1.25rem; }
    .footer-bottom { padding-top: 1.25rem; }
    .automat-layout { gap: 2rem; }
    .feature-layout { gap: 2rem; }
    .automat-features { gap: 1rem; }
    .feature-num { font-size: 1.2rem; }
    .price-row { flex-wrap: wrap; gap: 0.75rem; }
    .lpg-banner { padding: 1.5rem; }
    .lpg-hero-price { gap: 0.75rem; }
    .lpg-big-price { font-size: 1.4rem; }
    .btn-primary { font-size: 0.85rem; padding: 0.85rem 1.25rem; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.7rem; }
    .hero-sub { font-size: 0.88rem; }
    .shop-body h3 { font-size: 0.9rem; }
    .map-card-row { grid-template-columns: 1fr; }
    .header-logo-img { height: 30px; }
    .page-section { padding: 36px 0; }
    .feature-num { font-size: 1.1rem; }
    .feature-desc { font-size: 0.7rem; }
}
