:root {
    --brand-blue: #137dc0;
    --brand-yellow: #fde80e;
    --ink: #10212f;
    --muted: #5a6b78;
    --surface: #ffffff;
    --soft: #f4f8fb;
    --line: #d9e3ea;
    --focus: #8a5a00;
}

* {
    box-sizing: border-box;
}

body {
    color: var(--ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    background: var(--surface);
}

html,
body {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #075f98;
}

a:hover {
    color: #064c79;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    box-shadow: none;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 1000;
    padding: .75rem 1rem;
    background: var(--brand-yellow);
    color: var(--ink);
    font-weight: 700;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
}

.navbar {
    min-height: 78px;
}

.brand-mark {
    display: inline-block;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0;
}

.brand-text {
    display: grid;
    gap: .1rem;
    min-width: 172px;
    padding: .55rem .85rem .48rem;
    background: var(--brand-blue);
    color: #fff;
    border-bottom: 6px solid var(--brand-yellow);
    border-radius: 8px;
    line-height: 1;
}

.brand-name {
    font-size: 1.02rem;
    white-space: nowrap;
}

.brand-subtitle {
    color: var(--brand-yellow);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav-link {
    color: var(--ink);
    font-weight: 650;
}

.nav-link.active {
    color: #075f98 !important;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: .45rem;
}

.language-switch {
    display: inline-flex;
    gap: .25rem;
    padding: .25rem;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.language-switch a {
    min-width: 42px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
}

.language-switch a.active {
    background: var(--brand-yellow);
    color: var(--ink);
}

.hero-section {
    padding: 5rem 0 3rem;
    background: linear-gradient(115deg, #f7fbfe 0%, #ffffff 56%, #fffbe4 100%);
}

.eyebrow {
    color: #075f98;
    font-weight: 800;
    text-transform: uppercase;
    font-size: .86rem;
    letter-spacing: .08em;
    margin-bottom: .7rem;
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: clamp(2.3rem, 5vw, 4.8rem);
    font-weight: 850;
}

.lead {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.btn {
    border-radius: 8px;
    font-weight: 800;
}

.btn-primary {
    --bs-btn-bg: var(--brand-blue);
    --bs-btn-border-color: var(--brand-blue);
    --bs-btn-hover-bg: #0f679f;
    --bs-btn-hover-border-color: #0f679f;
}

.btn i {
    margin-right: .5rem;
}

.hero-image-frame,
.about-image-frame {
    margin: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 55px rgba(16, 33, 47, .16);
}

.hero-image-frame img,
.about-image-frame img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.hero-image-frame {
    aspect-ratio: 4 / 3;
    max-width: 540px;
    height: clamp(300px, 31vw, 430px);
    margin-left: auto;
    margin-right: auto;
    border-bottom: 8px solid var(--brand-yellow);
}

.about-image-frame {
    aspect-ratio: 16 / 11;
    height: clamp(280px, 34vw, 420px);
}

.section-block {
    padding: 4.5rem 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.page-hero p {
    color: var(--muted);
    font-size: 1.1rem;
}

.info-panel,
.category-card,
.store-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.info-panel {
    padding: 2rem;
    border-top: 6px solid var(--brand-blue);
}

.info-panel > i {
    color: var(--brand-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-panel h2 {
    font-size: 1.55rem;
    font-weight: 820;
}

.info-panel p {
    color: var(--muted);
    margin-bottom: 0;
}

.accent-panel {
    border-top: 6px solid var(--brand-yellow);
}

.product-section,
.values-section,
.about-preview {
    background: var(--soft);
}

.about-preview h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    font-weight: 850;
}

.about-preview p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.1rem;
}

.category-card {
    min-height: 230px;
    padding: 1.5rem;
}

.category-card i {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background: var(--brand-yellow);
    color: var(--ink);
    font-size: 1.45rem;
}

.category-card h3,
.store-card h3 {
    font-size: 1.25rem;
    font-weight: 820;
}

.category-card p,
.store-card p {
    color: var(--muted);
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: .6rem;
    margin-top: 1.5rem;
}

.category-carousel .carousel-inner {
    cursor: grab;
    overflow: hidden;
    touch-action: pan-y;
}

.category-carousel .carousel-inner:active {
    cursor: grabbing;
}

.category-carousel .carousel-inner.is-dragging,
.category-carousel .carousel-inner.is-dragging * {
    user-select: none;
}

.carousel-control-btn {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
}

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(115deg, #f7fbfe 0%, #ffffff 60%, #fffbe4 100%);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.values-list {
    display: grid;
    gap: .8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.values-list li {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 750;
}

.values-list i {
    color: var(--brand-blue);
}

.section-note {
    color: var(--muted);
    font-weight: 700;
}

.contact-panel {
    max-width: 900px;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.contact-panel p {
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: .75rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: .65rem;
    align-items: flex-start;
}

.contact-list i {
    color: var(--brand-blue);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.store-card {
    position: relative;
    padding: 1.35rem;
    overflow: hidden;
}

.store-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: var(--brand-blue);
    color: #fff;
    border-bottom: 6px solid var(--brand-yellow);
    border-radius: 8px;
    font-weight: 850;
}

.store-card p {
    display: flex;
    gap: .55rem;
    margin-bottom: .55rem;
}

.store-link {
    display: inline-flex;
    margin-top: .6rem;
    font-weight: 850;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-image {
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
}

.gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.site-footer {
    padding: 2rem 0;
    background: #0d2030;
    color: #fff;
}

.site-footer p,
.site-footer a {
    color: #e6f1f8;
}

.footer-legal {
    margin-top: .75rem;
    font-size: .92rem;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-lg-end;
    gap: .75rem 1.2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.footer-contact a,
.footer-contact li,
.footer-bottom p,
.footer-bottom a {
    overflow-wrap: anywhere;
}

.footer-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-size: .92rem;
}

.cookie-notice {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(16, 33, 47, .2);
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice h2 {
    margin: 0 0 .3rem;
    font-size: 1rem;
    font-weight: 850;
}

.cookie-notice p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 991.98px) {
    .language-switch {
        margin-top: .8rem;
    }

    .hero-section {
        padding-top: 3rem;
    }

    .stores-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }
}

@media (max-width: 767.98px) {
    html,
    body {
        overflow-x: clip;
    }

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

    .hero-image-frame {
        min-height: 340px;
        height: auto;
    }

    .about-image-frame {
        height: auto;
    }

    .section-block {
        padding: 3rem 0;
    }

    .footer-contact {
        justify-content: flex-start;
    }

    .footer-contact li {
        flex: 1 1 100%;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-notice {
        flex-direction: column;
        align-items: stretch;
    }

    .category-carousel {
        max-width: 100%;
        overflow: hidden;
    }

    .category-carousel .carousel-inner {
        overflow: hidden;
    }

    .category-carousel .carousel-item .row {
        --bs-gutter-x: 0;
        gap: .75rem 0;
        margin-right: 0;
        margin-left: 0;
    }

    .category-carousel .carousel-item [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .category-carousel .category-card {
        min-height: 0;
        padding: 1rem;
    }

    .category-carousel .category-card i {
        width: 42px;
        height: 42px;
        margin-bottom: .85rem;
        font-size: 1.2rem;
    }

    .category-carousel .category-card h3 {
        font-size: 1.05rem;
    }

    .category-carousel .category-card p {
        font-size: .94rem;
    }

    .carousel-controls {
        justify-content: center;
        margin-top: 1rem;
    }
}

.asw-menu-btn {
    --asw-btn-size: 41px !important;
    --asw-icon-size: 27px !important;
}
