@font-face {
    font-family: 'Roboto';
    src: local('Roboto Regular'), local('Roboto-Regular'), url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto SemiBold'), local('Roboto-SemiBold'), url('../fonts/Roboto-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Bold'), local('Roboto-Bold'), url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto ExtraBold'), local('Roboto-ExtraBold'), url('../fonts/Roboto-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Black'), local('Roboto-Black'), url('../fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary: #f99120;
    --black: #000000;
    --white: #FAFAFF;
    --platinium: #c4cccb;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

body {
    color: var(--black);
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

a {
    color: var(--black);
    text-decoration: none;
}

form :is(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="file"]),
    textarea,
    select) {
    transition: border-color 0.2s ease;
}

form :is(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="file"]),
    textarea,
    select):hover,
form :is(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="file"]),
    textarea,
    select):focus,
form :is(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="file"]),
    textarea,
    select):focus-visible {
    border-color: var(--primary);
    outline: none;
    box-shadow: none;
}

.site-shell {
    width: 100%;
    padding-left: 6rem;
    padding-right: 6rem;
}

.site-content {
    width: 100%;
}

.home-hero-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: 4px;
    background: var(--primary);
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 700;
    transition: filter 0.2s ease;
}

.home-hero-cta:hover,
.home-hero-cta:focus-visible {
    filter: brightness(1.06);
}

.home-promotions {
    width: 100%;
    padding: 1.8rem 0 3.9rem;
}

.home-promotions-inner {
    width: 100%;
    --home-promotions-edge: 1.5rem;
    --home-promotions-card-gap: 0.4rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.home-promotions-title {
    margin: 0;
    text-align: center;
    font-size: clamp(1.55rem, 2.8vw, 2.35rem);
    font-weight: 800;
    color: var(--black);
}

.home-promotions-subtitle {
    margin: 0.45rem auto 0;
    max-width: 64ch;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
    color: #5f6770;
}

.home-promotions-carousel {
    margin-top: 1.3rem;
    margin-left: calc(var(--home-promotions-edge) * -1);
    margin-right: calc(var(--home-promotions-edge) * -1);
    padding-left: var(--home-promotions-card-gap);
    padding-right: var(--home-promotions-card-gap);
}

.home-promotions-viewport {
    overflow: hidden;
}

.home-promotions-track {
    display: flex;
    gap: var(--home-promotions-card-gap);
    will-change: transform;
}

.home-promo-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    overflow: hidden;
}

.home-promo-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #d9dee5;
    background-image: var(--promo-image);
    background-size: cover;
    background-position: center;
}

.home-promo-content {
    --promo-card-pad-x: 0.9rem;
    --promo-card-pad-bottom: 1rem;
    --promo-card-cta-gap: 0.4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 auto;
    padding: 0.9rem 0.9rem 1rem;
    padding-bottom: calc(var(--promo-card-pad-bottom) + 2.75rem + var(--promo-card-cta-gap));
    position: relative;
}

.home-promo-content:has(.home-promo-cta-secondary) {
    padding-bottom: calc(var(--promo-card-pad-bottom) + 2.75rem + var(--promo-card-cta-gap) + 2.75rem + 0.35rem);
}

.home-promo-title {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.25;
    font-weight: 800;
    min-width: 0;
    flex: 0 0 auto;
    width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.home-promo-title a {
    display: block;
    max-width: 100%;
    color: var(--black);
    text-decoration: none;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.home-promo-title-row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.45rem;
    position: relative;
    padding-right: 64px;
}

.home-promo-brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: 0;
    overflow: visible;
    position: absolute;
    top: 0;
    right: 0;
}

.home-promo-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    color: inherit;
    text-decoration: none;
}

.home-promo-brand img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(24vw, 54px);
    max-height: 18px;
    object-fit: contain;
    object-position: center right;
}

.home-promo-brand-text {
    display: inline-flex;
    align-items: center;
    color: #5f6770;
    font-size: 0.84rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: right;
}

.home-promo-prices {
    margin: 0.45rem 0 0;
    display: inline-flex;
    align-items: flex-end;
    gap: 0.45rem;
}

.home-promo-title-row+.home-promo-prices {
    margin-top: 0.45rem;
}

.home-promo-price-old {
    font-size: 0.88rem;
    color: #7e8894;
    text-decoration: line-through;
}

.home-promo-price-new {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--primary);
}

.home-promo-netto {
    font-size: 0.72rem;
    line-height: 1;
    color: #7d8792;
    margin-bottom: 0.1rem;
}

.home-promo-desc {
    margin: 0.62rem 0 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #5f6770;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-promo-desc-list {
    margin: 0.62rem 0 0;
    margin-bottom: 0;
    padding-left: 1.1rem;
    list-style: disc;
}

.home-promo-desc-list li {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: #5f6770;
}

.home-promo-desc-list li::marker {
    color: #111821;
}

.home-promo-desc-list li+li {
    margin-top: 0.16rem;
}

.home-promo-readmore {
    margin-top: 0.14rem;
    margin-bottom: 0.24rem;
    color: #5f6770;
    font-size: 0.9rem;
    line-height: 1.45;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.home-promo-readmore:hover,
.home-promo-readmore:focus-visible {
    border-bottom-color: currentColor;
}

.home-promo-cta {
    margin-top: 0.8rem;
    text-decoration: none;
}

[data-cart-add] {
    transition: opacity 0.18s ease;
}

[data-cart-add].is-text-fading {
    opacity: 0.55;
}

.home-promo-cta.home-hero-cta {
    position: absolute;
    left: var(--promo-card-pad-x);
    bottom: var(--promo-card-pad-bottom);
    margin-top: 0;
    width: calc(100% - (var(--promo-card-pad-x) * 2));
    min-height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
}

.home-promo-cta-secondary.home-hero-cta {
    bottom: calc(var(--promo-card-pad-bottom) + 2.75rem + 0.35rem);
    background: #ffffff;
    border: 1px solid var(--primary);
    color: #2a2f35;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.home-promo-cta-secondary.home-hero-cta:hover,
.home-promo-cta-secondary.home-hero-cta:focus-visible {
    border-color: color-mix(in srgb, var(--primary) 62%, #000);
}

.home-promo-desc+.home-promo-cta.home-hero-cta,
.home-promo-desc-list+.home-promo-cta.home-hero-cta {
    margin-top: 0;
}

.home-promotions-indicators {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.48rem;
}

.home-promotions-indicators[hidden] {
    display: none;
}

.home-promotions-indicator {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 24, 33, 0.24);
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

.home-promotions-indicator.is-active {
    width: 24px;
    border-radius: 5px;
    background: var(--primary);
}

.contact-page {
    width: 100%;
}

.contact-page-section {
    padding-top: 1.4rem;
    padding-bottom: 3.4rem;
}

.contact-page-grid {
    align-items: start;
}

.contact-page-left {
    max-width: none;
    margin-left: 0;
}

.contact-page-left .site-footer-contact-details {
    margin-top: 1rem;
}

.contact-page-map-wrap {
    margin-top: 1rem;
}

.contact-page-map-wrap iframe {
    width: 100%;
    min-height: 320px;
}

@media (max-width: 1279px) {
    .site-shell {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .home-promotions-inner {
        --home-promotions-edge: 2.5rem;
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .contact-page-map-wrap iframe {
        min-height: 300px;
    }
}

@media (max-width: 1023px) {
    .site-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .home-promotions {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }

    .home-promotions-inner {
        --home-promotions-edge: 1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .home-promo-content {
        --promo-card-pad-x: 0.82rem;
        --promo-card-pad-bottom: 0.95rem;
        padding: 0.82rem 0.82rem 0.95rem;
        padding-bottom: calc(var(--promo-card-pad-bottom) + 2.75rem + var(--promo-card-cta-gap));
    }

    .home-promo-title {
        font-size: 0.98rem;
    }

    .home-promo-brand img {
        max-width: min(24vw, 47px);
        max-height: 15px;
    }

    .home-promo-brand-text {
        font-size: 0.8rem;
    }

    .home-promo-price-new {
        font-size: 1rem;
    }

    .contact-page-section {
        padding-top: 1rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
}

@media (max-width: 767px) {
    .site-shell {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .home-promotions-title {
        font-size: clamp(1.38rem, 7.4vw, 1.92rem);
    }

    .home-promotions-subtitle {
        font-size: 0.92rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .home-promotions-inner {
        --home-promotions-edge: 0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .home-promotions-carousel {
        margin-top: 1rem;
    }

    .home-promotions-indicators {
        margin-top: 0.8rem;
    }

    .contact-page-map-wrap iframe {
        min-height: 240px;
    }

    .home-hero-cta {
        margin-top: 0.8rem;
        min-height: 2.55rem;
        padding: 0 1rem;
    }

}