@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900; /* definiert den variablen Gewichtsbereich */
    font-stretch: 75% 125%; /* optional, falls wdth-Achse unterstützt wird */
    font-display: swap; /* bessere Performance beim Laden */
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #000000;
}

.clearfix {
    clear: both;
}

/* ==== FONTS ==== */

*, body {
    font-family: 'Roboto', sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    font-variation-settings: "wdth" 100;
    letter-spacing: .06rem;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6, p, span, button, a {
    font-family: 'Roboto', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    letter-spacing: .06rem;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    margin: 0;
    padding: 0;
}

p, span, button, a {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 20px 0;
}

h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 50px;
    margin: 0 0 14px 0;
}

footer h3 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 20px 0;
}

b, strong {
    font-weight: 700;
}

p svg, a svg, button svg {
    vertical-align: middle;
}

.font-14, .font-14 span {
    font-size: 14px !important;
}

footer a {
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    color: #000000;
    text-decoration: underline;
}

i {
    font-style: italic;
}

.btn {
    padding: 18px 20px;
    border-radius: 6px;
    background: #cccccc;
    text-decoration: none;
    letter-spacing: 0.06rem !important;
    cursor: pointer;
}

.btn-primary {
    background: #0B455D;
    border: solid 1px #0B455D;
    color: #ffffff;
}

.bg-primary {
    background: #0B455D;
    color: #ffffff;
}

.btn-outline-primary {
    background: transparent;
    border: solid 1px #0B455D;
    color: #000000;
}

.no-link-style {
    text-decoration: none !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    background-clip: padding-box;
    border: solid 1px #dadada;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    transition: border-color .15s
    ease-in-out, box-shadow .15s
    ease-in-out;
}

.alert {
    display: block;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    border: solid 1px #dadada;
    background: #f0f0f0;
    margin-bottom: 20px;
    line-height: 24px;
}

.alert-success {
    background: #D1E7DD;
    border-color: #a3cfbb;
}

.alert-danger {
    background: #f8d7da;
    border-color: #f1aeb5;
}

.alert svg {
    float: left;
    padding: 3px 0 0 0;
    margin-right: 4px;
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    color: #000000;
    background-color: transparent;
}

.table tr td {
    border-bottom: solid 1px #dadada;
}

.table tr th {
    font-weight: 700;
    border-bottom: solid 1px #dadada;
}

.border-bottom {
    border-bottom: solid 1px #dadada;
}

/* ==== CONTENT ==== */

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(248,249,250, 1) !important;
    color: #000000;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(33,37,41, 1) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: #ffffff !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

section, .section {
    width: 90%;
    margin: 0 0 0 5%;
    display: flex;
    flex-direction: column;
}

.container  {
    width: 100%;
    padding: 0;
    margin: 0;
}

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

.text-right {
    text-align: right;
}

#main {
    width: 100%;
    margin: 0;
    padding: 0;
}

footer {
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: solid 1px #dadada;
}

footer .container {
    width: 90%;
    margin: 0 0 0 5%;
    padding: 80px 0;
}

.border {
    border: solid 1px #dadada;
}

.border-right {
    border-right: solid 1px #dadada;
}

.disabled {
    opacity: 0.5;
    cursor: initial;
}


/* ==== GRID ==== */
.w-33 {
    width: 33.33%;
}

.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row.inverse {
    flex-direction: row-reverse;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.row.justify-content {
    justify-content: center;
}

.p-0 {
    padding: 0 !important;
}

.p-2 {
    padding: 0.75rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.m-0 {
    margin: 0 !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pb-2 {
    padding-bottom: .5rem !important;
}

.pt-1 {
    padding-top: .25rem !important;
}

.pt-3 {
    padding-top: .75rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pb-3 {
    padding-bottom: .75rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.mt-1 {
    margin-top: .25rem !important;
}

.mt-2 {
    margin-top: .5rem !important;
}

.mt-3 {
    margin-top: .75rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-1 {
    margin-bottom: .25rem !important;
}

.mb-2 {
    margin-bottom: .5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.d-inline-block {
    display: inline-block !important;
}

.w-100 {
    width: 100%;
    display: block;
    margin: 0;
}

table.w-100 {
    width: 100%;
    display: inline-table;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.border-radius {
    border-radius: 6px;
}

@media (max-width: 768px) {
    .cartQuantity {
        position: absolute;
        width: 26px;
        height: 27px;
        background: #0B455D;
        color: #ffffff;
        border-radius: 50%;
        text-align: center;
        line-height: 26px;
        font-size: 12px;
        right: -10px;
        top: 6px;
    }

    .sm-p-3 {
        padding: 1rem !important;
    }

    .sm-p-4 {
        padding: 1.5rem !important;
    }

    .sm-text-center {
        text-align: center;
        align-items: center !important;
    }

    .productHighlightInfo h2 {
        font-weight: 700;
        font-size: 24px;
        line-height: 50px;
    }

    footer h3 {
        text-decoration: underline;
    }

    .cartNavigator a, .cartNavigator p {
        font-size: 14px !important;
        padding: 20px 0 !important;
        text-align: center;
    }
    .productTitleView {
        font-weight: 700;
        font-size: 24px;
        line-height: 34px;
        margin: 0 0 10px 0;
    }

    .size-item {
        padding: 0 8px !important;
        min-width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 14px !important;
    }

    .sm-w-100 {
        width: 100%;
    }

    .sm-mb-2 {
        margin-bottom: .5rem !important;
    }

    .sm-mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .sm-mb-5 {
        margin-bottom: 3rem !important;
    }

    .col-sm-6 {
        width: 50%;
    }

    .sm-pt-4 {
        padding-top: 1.5rem !important;
    }

    .productTitle {
        padding: 0;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 90% !important;
        margin: 0 0 0 5%;
        display: block !important;
    }

    footer .container {
        width: 90%;
        margin: 0 0 0 5%;
        padding: 40px 0;
        text-align: center;
    }

    .thumbnail {
        width: 28% !important;
    }

    h1, .h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media (min-width: 769px) {
    .cartQuantity {
        position: absolute;
        width: 30px;
        height: 30px;
        background: #0B455D;
        color: #ffffff;
        border-radius: 50%;
        text-align: center;
        line-height: 30px;
        font-size: 14px;
        right: 2px;
        top: 4px;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .col {
        flex: 1 0 0%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.6666667%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.6666666%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33%;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-none {
        display: none !important;
    }

    .md-mb-2 {
        margin-bottom: .5rem !important;
    }

    .md-mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .md-mb-5 {
        margin-bottom: 3rem !important;
    }

    .md-pt-5 {
        padding-top: 3rem !important;
    }

    .md-p-5 {
        padding: 3rem !important;
    }
    .md-p-0 {
        padding: 0 !important;
    }
}