﻿@charset "UTF-8";

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

:root {
    --base-blue: #0f7eb3;
    --base-blue-rgb: rgb(15, 126, 179);
    --light-blue: #A0D4EF;
    --tuby-orange: #F0B53A;
    --default-ease: cubic-bezier(.72, .17, .17, 1);
    --smooth-ease: cubic-bezier(.32, .72, 0, 1);
    --bouncy-ease: cubic-bezier(.34, 1.42, .64, 1);
    --elastic-ease-out: linear(0, .5737 7.6%, .8382 11.87%, .9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, .9995 46.99%, .9872 51.63%, .9842 58.77%, 1.0011 81.26%, 1);
    --grid-gutter: 1.25em;
    --grid-margin: 1.25em;
    --grid-columns: 6;
    --grid-column-width: calc(((var(--vw, 1vw) * 100) - (2 * var(--grid-margin))) / var(--grid-columns) - (var(--grid-gutter) * (var(--grid-columns) - 1) / var(--grid-columns)));
    --grid: repeat(var(--grid-columns), minmax(0, 1fr));
}

@media (width >= 991px) {
    :root {
        --grid-margin: 2.5em;
        --grid-columns: 12;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: var(--base-blue);
    background: #fff;
}

#home,
#product-detail,
#home footer,
#product-detail footer {
    background: #EFFAFF;
}

.has-header-padding {
    padding-top: 164px;
}

header {
    position: fixed;
    top: 30px;
    left: 50%;
    z-index: 100;
    max-width: 1800px;
    width: 100%;
    border-radius: 26px;
    background: #D1EDFB;
    backdrop-filter: blur(12px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.35s, -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s, -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

    header.hide {
        -webkit-transform: translateY(-100%) translateX(-50%);
        transform: translateY(-100%) translateX(-50%);
        opacity: 0;
    }

.nav-inner {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 24px;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

    .nav-icons a.nav-user-label {
        width: auto;
        height: auto;
        background: none;
        border-radius: 0;
        font-weight: 700;
        font-size: 14px;
        color: var(--base-blue);
        text-decoration: none;
        font-family: "Roboto Condensed", sans-serif;
        transition: color 0.2s;
        white-space: nowrap;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-icons a.nav-user-label:hover {
        color: #42A1CF;
        background: none;
        box-shadow: none;
        rotate: none;
        scale: none;
        transform: none;
    }

    nav a {
        font-weight: 700;
        font-size: 28px;
        color: var(--base-blue);
        text-decoration: none;
        -webkit-transition: color 0.2s;
        transition: color 0.2s;
        font-family: "Roboto Condensed", sans-serif;
    }

        nav a:hover {
            color: #42A1CF;
        }

.nav-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px;
}

.nav-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

    .nav-icons a {
        display: block;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        -webkit-transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        width: 53px;
        height: 53px;
        background: #EFFAFF;
    }

        .nav-icons a:hover {
            rotate: -4deg;
            scale: 0.945 0.915;
            -webkit-transform: scale(1.0582010582, 1.0928961749);
            transform: scale(1.0582010582, 1.0928961749);
            -webkit-transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
            transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
            transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), transform 0.35s 0.25s var(--bouncy-ease), box-shadow 0.35s var(--smooth-ease);
            transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), transform 0.35s 0.25s var(--bouncy-ease), box-shadow 0.35s var(--smooth-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
            background: #fff;
            -webkit-box-shadow: 0 6px 18px rgba(46, 139, 192, 0.45);
            box-shadow: 0 6px 18px rgba(46, 139, 192, 0.45);
        }

        .nav-icons a span {
            display: block;
            width: 30px;
            height: 30px;
        }

        .nav-icons a.yt span {
            background: url(../img/icon_youtube.svg) no-repeat center center;
            background-size: contain;
        }

        .nav-icons a.tiktok span {
            background: url(../img/icon_tiktok.svg) no-repeat center center;
            background-size: contain;
        }

        .nav-icons a.insta span {
            background: url(../img/icon_instagram.svg) no-repeat center center;
            background-size: contain;
        }

        .nav-icons a.cart span {
            background: url(../img/icon_cart.svg) no-repeat center center;
            background-size: contain;
        }

        .nav-icons a.user span {
            background: url(../img/icon_user.svg) no-repeat center center;
            background-size: contain;
        }

        /* Green dot when logged in */
        .nav-icons a.user.is-logged-in {
            position: relative;
        }

        .nav-icons a.user.is-logged-in::after {
            content: "";
            position: absolute;
            bottom: 6px;
            right: 6px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #2ecc71;
            border: 2px solid #D1EDFB;
        }

        .nav-icons a.admin span {
            background: url(../img/icon_admin.svg) no-repeat center center;
            background-size: contain;
        }

.btn-shop {
    background: #EFFAFF;
    color: var(--base-blue);
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5%;
    padding: 10px 35px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
    transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
    transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease);
    transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
}

    .btn-shop:hover {
        -webkit-box-shadow: 0 6px 18px rgba(46, 139, 192, 0.45);
        box-shadow: 0 6px 18px rgba(46, 139, 192, 0.45);
        translate: -0.25em -0.025em 0;
        rotate: -4deg;
        scale: 0.945 0.915;
        -webkit-transform: scale(1.0582010582, 1.0928961749);
        transform: scale(1.0582010582, 1.0928961749);
        -webkit-transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), transform 0.35s 0.25s var(--bouncy-ease), box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), transform 0.35s 0.25s var(--bouncy-ease), box-shadow 0.35s var(--smooth-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        box-shadow: 0 6px 18px rgba(46, 139, 192, 0.45);
    }

/* Hamburger */
.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        width: 24px;
        height: 2.5px;
        background: var(--base-blue);
        border-radius: 4px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

.logo {
    width: 238px;
    height: 73px;
    position: relative;
}

.marquee {
    z-index: 0;
    width: 100%;
    display: block;
    position: absolute;
    top: -19.5vw;
    left: 0;
    right: 0;
    overflow-x: clip;
}

.marquee-inner {
    display: grid;
}

.marquee-text-svg {
    color: var(--tuby-orange);
}

    .marquee-text-svg text {
        fill: #fff;
        letter-spacing: -0.03em;
        text-transform: uppercase;
        font-size: 9rem;
        font-weight: 900;
        line-height: 70%;
        font-family: "Roboto", sans-serif;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

.marquee-inner svg {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.marquee-text-svg {
    z-index: 1;
    grid-area: 1/1;
    margin-top: 2.5em;
}

.marquee-bg-svg {
    color: var(--tuby-orange);
    grid-area: 1/1;
}

.marquee-overlay {
    z-index: -1;
    background-color: #EFFAFF;
    clip-path: polygon(66% 10%, 100% 53%, 100% 100%, 0 100%, 0 79%);
    grid-area: 1/1;
    top: -50px;
    position: relative;
}

#hero-video {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

.hero {
    z-index: 4;
    width: 100%;
}

.hero-content {
    z-index: 3;
    width: 100%;
    min-height: 87svh;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@media screen and (min-width: 2420px) and (orientation: landscape) {
    .hero-content {
        min-height: 114svh;
    }
}

@media screen and (max-width: 2420px) and (orientation: landscape) {
    .hero-content {
        min-height: 98svh;
    }
}

.hero-text {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: 256px;
    z-index: 3;
}

.tagline {
    font-family: "Roboto", sans-serif;
    font-size: 6.66vw;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: -0.005em;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
    color: #ffffff;
}

@media screen and (min-width: 1920px) {
    .tagline {
        font-size: 128px;
    }
}

.subline {
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 200;
    letter-spacing: -0.005em;
    text-align: center;
    text-transform: none;
    color: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100svh;
}

.button {
    z-index: 1;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.button-cycle {
    pointer-events: none;
    border-radius: 50%;
    width: 3.25em;
    height: 3.25em;
    display: grid;
}

    .button-cycle.is-first .button-arrow {
        -webkit-transition: translate 0.3s 0.15s var(--bouncy-ease), scale 0.3s 0.1s var(--default-ease), opacity 0.15s 0.15s ease-out, -webkit-filter 0.15s 0.15s ease-out;
        transition: translate 0.3s 0.15s var(--bouncy-ease), scale 0.3s 0.1s var(--default-ease), opacity 0.15s 0.15s ease-out, -webkit-filter 0.15s 0.15s ease-out;
        transition: translate 0.3s 0.15s var(--bouncy-ease), scale 0.3s 0.1s var(--default-ease), opacity 0.15s 0.15s ease-out, filter 0.15s 0.15s ease-out;
        transition: translate 0.3s 0.15s var(--bouncy-ease), scale 0.3s 0.1s var(--default-ease), opacity 0.15s 0.15s ease-out, filter 0.15s 0.15s ease-out, -webkit-filter 0.15s 0.15s ease-out;
    }

    .button-cycle.is-second {
        position: absolute;
        top: -0.125em;
        right: -0.8em;
    }

        .button-cycle.is-second .button-arrow {
            -webkit-transition: translate 0.75s var(--elastic-ease-out), scale 0.3s var(--default-ease), opacity 0.15s 0.05s ease-out, -webkit-filter 0.15s 0.05s ease-out;
            transition: translate 0.75s var(--elastic-ease-out), scale 0.3s var(--default-ease), opacity 0.15s 0.05s ease-out, -webkit-filter 0.15s 0.05s ease-out;
            transition: translate 0.75s var(--elastic-ease-out), scale 0.3s var(--default-ease), opacity 0.15s 0.05s ease-out, filter 0.15s 0.05s ease-out;
            transition: translate 0.75s var(--elastic-ease-out), scale 0.3s var(--default-ease), opacity 0.15s 0.05s ease-out, filter 0.15s 0.05s ease-out, -webkit-filter 0.15s 0.05s ease-out;
            translate: -0.75em 0.75em 0;
            -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
            opacity: 0;
            scale: 0.625;
        }

        .button-cycle.is-second .button-cycle-bg {
            scale: 0;
            opacity: 0;
            -webkit-transition: scale 0.75s var(--elastic-ease-out), opacity 0.15s 0.1s ease-out;
            transition: scale 0.75s var(--elastic-ease-out), opacity 0.15s 0.1s ease-out;
        }

    .button-cycle svg path {
        fill: var(--base-blue);
    }

    .button-cycle .button-arrow {
        z-index: 1;
        grid-area: 1/1;
        place-self: center;
        width: 0.625em;
        height: 0.625em;
    }

    .button-cycle.big {
        width: 4.5em;
        height: 4.5em;
    }

        .button-cycle.big .button-arrow {
            width: 1em;
            height: 1em;
        }

        .button-cycle.big.is-second {
            right: -1.9em;
        }

    .button-cycle .button-cycle-bg {
        -webkit-transition: scale 0.75s var(--elastic-ease-out), opacity 0.15s ease-out;
        transition: scale 0.75s var(--elastic-ease-out), opacity 0.15s ease-out;
        background-color: #fff;
        border-radius: 50%;
        grid-area: 1/1;
    }

.button-bg {
    -webkit-transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
    transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
    transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease);
    transition: translate 0.8s var(--elastic-ease-out), rotate 0.8s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease), -webkit-transform 0.35s var(--default-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
    z-index: 2;
    background-color: #fff;
    border-radius: 12.5em;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5625em 1.275em 0.5625em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

    .button-bg .button-text {
        font-size: 28px;
        text-transform: uppercase;
        color: var(--base-blue);
        font-family: "Roboto Condensed", sans-serif;
        font-weight: 700;
        letter-spacing: -5%;
    }

    .button-bg.big {
        padding: 0.75em 2em 0.75em;
    }

        .button-bg.big .button-text {
            font-size: 40px;
        }

.hero-button {
    padding-top: 4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cta.style-blue {
    color: var(--base-blue);
}

    .cta.style-blue .button-cycle svg path {
        fill: #fff;
    }

    .cta.style-blue .button-cycle .button-cycle-bg {
        background-color: var(--base-blue);
    }

.cta .button-bg {
    background-color: var(--base-blue);
}

    .cta .button-bg .button-text {
        color: #fff;
    }

@media (hover: hover) and (pointer: fine) {
    .button:is(:hover, :focus-visible) .button-bg {
        translate: -2.5em -0.325em 0;
        rotate: -4deg;
        scale: 0.945 0.915;
        -webkit-transform: scale(1.0582010582, 1.0928961749);
        transform: scale(1.0582010582, 1.0928961749);
        -webkit-transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), transform 0.35s 0.25s var(--bouncy-ease), box-shadow 0.35s var(--smooth-ease);
        transition: translate 0.8s 0.1s var(--elastic-ease-out), rotate 0.8s 0.1s var(--elastic-ease-out), scale 0.15s 0.1s var(--default-ease), transform 0.35s 0.25s var(--bouncy-ease), box-shadow 0.35s var(--smooth-ease), -webkit-transform 0.35s 0.25s var(--bouncy-ease), -webkit-box-shadow 0.35s var(--smooth-ease);
    }

    .button:is(:hover, :focus-visible) .button-cycle.is-first .button-arrow {
        translate: -0.75em 0.75em 0;
        -webkit-filter: blur(0.5rem);
        filter: blur(0.5rem);
        opacity: 0;
        scale: 0.625;
        -webkit-transition: translate 0.75s 0.1s var(--elastic-ease-out), scale 0.25s 0.1s var(--default-ease), opacity 0.1s 0.15s ease-out, -webkit-filter 0.1s 0.15s ease-out;
        transition: translate 0.75s 0.1s var(--elastic-ease-out), scale 0.25s 0.1s var(--default-ease), opacity 0.1s 0.15s ease-out, -webkit-filter 0.1s 0.15s ease-out;
        transition: translate 0.75s 0.1s var(--elastic-ease-out), scale 0.25s 0.1s var(--default-ease), opacity 0.1s 0.15s ease-out, filter 0.1s 0.15s ease-out;
        transition: translate 0.75s 0.1s var(--elastic-ease-out), scale 0.25s 0.1s var(--default-ease), opacity 0.1s 0.15s ease-out, filter 0.1s 0.15s ease-out, -webkit-filter 0.1s 0.15s ease-out;
    }

    .button:is(:hover, :focus-visible) .button-cycle.is-first .button-cycle-bg {
        scale: 0;
        opacity: 0;
        -webkit-transition: scale 0.35s var(--default-ease), opacity 0.15s 0.15s ease-out;
        transition: scale 0.35s var(--default-ease), opacity 0.15s 0.15s ease-out;
    }

    .button:is(:hover, :focus-visible) .button-cycle.is-second .button-arrow {
        translate: 0 0 0;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
        scale: 1;
        -webkit-transition: translate 0.3s 0.2s var(--bouncy-ease), scale 0.3s 0.15s var(--default-ease), opacity 0.15s 0.2s ease-out, -webkit-filter 0.15s 0.2s ease-out;
        transition: translate 0.3s 0.2s var(--bouncy-ease), scale 0.3s 0.15s var(--default-ease), opacity 0.15s 0.2s ease-out, -webkit-filter 0.15s 0.2s ease-out;
        transition: translate 0.3s 0.2s var(--bouncy-ease), scale 0.3s 0.15s var(--default-ease), opacity 0.15s 0.2s ease-out, filter 0.15s 0.2s ease-out;
        transition: translate 0.3s 0.2s var(--bouncy-ease), scale 0.3s 0.15s var(--default-ease), opacity 0.15s 0.2s ease-out, filter 0.15s 0.2s ease-out, -webkit-filter 0.15s 0.2s ease-out;
    }

    .button:is(:hover, :focus-visible) .button-cycle.is-second .button-cycle-bg {
        scale: 1;
        opacity: 1;
        -webkit-transition: scale 0.75s 0.1s var(--elastic-ease-out), opacity 0.15s ease-out;
        transition: scale 0.75s 0.1s var(--elastic-ease-out), opacity 0.15s ease-out;
    }
}

.grid-layout {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    position: relative;
}

.intro {
    z-index: 2;
    width: 100%;
    height: 100%;
    margin-top: -12.75em;
    padding-bottom: 10em;
    position: relative;
}

.intro-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    height: 100%;
    padding-bottom: 2em;
    padding-left: 2.5em;
    padding-right: 2.5em;
    position: relative;
}

.intro-heading {
    grid-area: span 1/span 12/span 1/span 12;
    place-self: center;
    text-align: center;
    letter-spacing: -0.03em;
}

.intro-heading {
    font-size: 48px;
}

@media screen and (min-width: 640px) {
    .intro-heading {
        font-size: calc(48px + 16 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .intro-heading {
        font-size: 64px;
    }
}

.intro-heading {
    line-height: 100%;
    font-weight: 900;
}

.orange-span {
    color: var(--tuby-orange);
}

.intro-wrapper {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-area: span 1/span 12/span 1/span 12;
    width: 100%;
    margin-top: 7.5em;
    display: grid;
}

    .intro-wrapper .paragraph {
        letter-spacing: -0.03em;
        margin-bottom: 0;
        font-size: 28px;
        line-height: 40px;
        font-weight: 400;
    }

    .intro-wrapper .intro-cta {
        grid-column-gap: 1.875em;
        grid-row-gap: 1.875em;
        padding-top: 1.25em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.intro-text-inner {
    grid-area: 1/8/2/12;
    z-index: 0;
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 1.25em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.intro-subheading {
    color: var(--base-blue);
    letter-spacing: -0.03em;
    font-size: 2.5em;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    line-height: 110%;
}

.shorts-wrapper {
    z-index: 1;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    grid-area: span 1/span 7/span 1/span 7;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    display: grid;
    position: relative;
}

.shorts-inner {
    grid-column-gap: 0.625em;
    grid-row-gap: 0.625em;
    background-color: #ffffff;
    border-radius: 0.375em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 23.4375vw;
    height: 100%;
    padding: 0.875em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-shadow: 0 0 34px rgba(15, 126, 179, 0.3019607843);
    box-shadow: 0 0 34px rgba(15, 126, 179, 0.3019607843);
}

.shorts-inner-wrap.is-first {
    position: relative;
    top: 3.75em;
    left: -8.5625em;
    rotate: -12deg;
}

.shorts-inner-wrap.is-second {
    position: relative;
    top: 11.875em;
    left: -13.9375em;
    rotate: -2.5deg;
}

.shorts-inner-wrap.is-third {
    position: relative;
    top: -2.6875em;
    left: -25em;
    rotate: 5.5deg;
}

.shorts-media {
    aspect-ratio: 9/16;
    background-color: #D9D9D9;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.375em;
    width: 100%;
    height: 100%;
    position: relative;
}

    .shorts-media video {
        width: 100%;
        height: 100%;
        border-radius: 0.375em;
    }

.shorts-sound-btn {
    -webkit-transition: scale 0.75s var(--elastic-ease-out), background-color 0.25s var(--smooth-ease);
    transition: scale 0.75s var(--elastic-ease-out), background-color 0.25s var(--smooth-ease);
    backdrop-filter: blur(0.375em);
    color: #fff;
    background-color: color-mix(in hsl, #A0D4EF, transparent 65%);
    border-radius: 50%;
    place-content: center;
    width: 2.5em;
    height: 2.5em;
    padding: 0;
    display: grid;
    position: absolute;
    bottom: 1.5em;
    right: 1.5em;
}

    .shorts-sound-btn .shorts-sound-button-icon {
        grid-area: 1/1;
        width: 1em;
        height: 1em;
    }

        .shorts-sound-btn .shorts-sound-button-icon.is-second {
            opacity: 0;
            transition: opacity 0.2s;
        }

        .shorts-sound-btn .shorts-sound-button-icon.is-first {
            transition: opacity 0.2s;
        }

        .shorts-sound-btn.is-sound-on .shorts-sound-button-icon.is-first {
            opacity: 0;
        }

        .shorts-sound-btn.is-sound-on .shorts-sound-button-icon.is-second {
            opacity: 1;
        }

    .shorts-sound-btn.is-top {
        top: 1.5em;
        bottom: auto;
    }

button,
[type=button],
[type=reset] {
    cursor: pointer;
    -webkit-appearance: button;
    border: 0;
}

.products-row-label {
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--base-blue);
    margin: 2em 0 0.5em;
}

.products-grid {
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 48px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
}

.product-card {
    width: 100%;
    max-width: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
}

    .product-card:hover .product-card-visual img {
        -webkit-transform: translate3d(0, 0, 0px) scale3d(1.15, 1.15, 1.001) rotateX(5deg) rotateY(-5deg) rotateZ(0deg) skew(0deg, 0deg);
        transform: translate3d(0, 0, 0px) scale3d(1.15, 1.15, 1.001) rotateX(5deg) rotateY(-5deg) rotateZ(0deg) skew(0deg, 0deg);
        -webkit-transition: -webkit-transform 0.35s var(--bouncy-ease);
        transition: -webkit-transform 0.35s var(--bouncy-ease);
        transition: transform 0.35s var(--bouncy-ease);
        transition: transform 0.35s var(--bouncy-ease), -webkit-transform 0.35s var(--bouncy-ease);
    }

    .product-card .product-card-visual {
        overflow: hidden;
        position: relative;
        border-radius: 13px;
        padding: 0.875em;
        background: #fff;
        border-radius: 0.375em;
        -webkit-box-shadow: 0 0 34px rgba(15, 126, 179, 0.3019607843);
        box-shadow: 0 0 34px rgba(15, 126, 179, 0.3019607843);
    }

        .product-card .product-card-visual .product-card-img {
            -webkit-transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1.001) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
            transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1.001) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
            -webkit-transition: -webkit-transform 0.35s var(--bouncy-ease);
            transition: -webkit-transform 0.35s var(--bouncy-ease);
            transition: transform 0.35s var(--bouncy-ease);
            transition: transform 0.35s var(--bouncy-ease), -webkit-transform 0.35s var(--bouncy-ease);
            -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            border-radius: 0.375em;
            /*width: 460px;
  height: 460px;*/
            position: relative;
        }

.price-subtitle {
    font-size: 18px;
    font-weight: 400;
}

.card-price {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.005em;
}

.price-meta {
    font-size: 12px;
    font-weight: 400;
    color: #6c6c6c;
}

.card-sub-info {
    font-size: 18px;
    font-weight: 400;
}

.section-title {
    z-index: 1;
    font-family: "Roboto", sans-serif;
}

.section-title {
    font-size: 48px;
}

@media screen and (min-width: 640px) {
    .section-title {
        font-size: calc(48px + 41 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .section-title {
        font-size: 89px;
    }
}

.section-title {
    font-weight: 900;
    line-height: 100%;
    letter-spacing: -0.005em;
    text-align: center;
    margin: 4rem 0;
}

    .section-title span {
        color: #A0D4EF;
    }

.section-wrap {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 24px;
}

.usp {
    position: relative;
}

    .usp .usp-section {
        padding: 16em 0;
    }

        .usp .usp-section.is-first .usp-img, .usp .usp-section.is-third .usp-img {
            -webkit-transform: rotate(-3.2deg);
            transform: rotate(-3.2deg);
        }

        .usp .usp-section.is-first .usp-card, .usp .usp-section.is-third .usp-card {
            background: var(--tuby-orange);
            color: white;
            margin-left: -40px;
            -webkit-transform: rotate(3.2deg);
            transform: rotate(3.2deg);
        }

        .usp .usp-section.is-first .usp-visual, .usp .usp-section.is-third .usp-visual {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
        }

        .usp .usp-section.is-second .usp-img, .usp .usp-section.is-fourth .usp-img {
            -webkit-transform: rotate(3.2deg);
            transform: rotate(3.2deg);
        }

        .usp .usp-section.is-second .usp-card, .usp .usp-section.is-fourth .usp-card {
            margin-right: -40px;
            -webkit-transform: rotate(-3.2deg);
            transform: rotate(-3.2deg);
            background: #A0D4EF;
            color: var(--base-blue);
        }

        .usp .usp-section.is-second .usp-visual, .usp .usp-section.is-fourth .usp-visual {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

        .usp .usp-section.is-first::after {
            content: "";
            background: url(../img/bg_lines.svg) no-repeat center center;
            position: absolute;
            top: 20%;
            z-index: -1;
            width: 100%;
            height: 100%;
            background-size: 100%;
        }

    .usp .section-wrap .usp-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .usp .section-wrap .usp-inner .usp-visual {
            position: relative;
        }

            .usp .section-wrap .usp-inner .usp-visual .usp-img {
                width: 100%;
                aspect-ratio: 4/4;
                max-width: 620px;
                -o-object-fit: cover;
                object-fit: cover;
                border-radius: 13px;
                display: block;
                position: relative;
                z-index: 2;
            }

        .usp .section-wrap .usp-inner .usp-card {
            position: relative;
            z-index: 3;
            padding: 40px;
            border-radius: 13px;
            text-align: center;
        }

            .usp .section-wrap .usp-inner .usp-card h2 {
                margin-bottom: 12px;
                font-weight: 900;
                line-height: 100%;
            }

            .usp .section-wrap .usp-inner .usp-card h2 {
                font-size: 28px;
            }

@media screen and (min-width: 640px) {
    .usp .section-wrap .usp-inner .usp-card h2 {
        font-size: calc(28px + 61 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .usp .section-wrap .usp-inner .usp-card h2 {
        font-size: 89px;
    }
}

.usp .section-wrap .usp-inner .usp-card p {
    font-size: 20px;
}

@media screen and (min-width: 640px) {
    .usp .section-wrap .usp-inner .usp-card p {
        font-size: calc(20px + 8 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .usp .section-wrap .usp-inner .usp-card p {
        font-size: 28px;
    }
}

.usp .section-wrap .usp-inner .usp-card p {
    font-weight: 200;
    line-height: 1.4;
}

.video-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

    .video-section video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
        aspect-ratio: 16/9;
    }

    .video-section .video-placeholder {
        width: 100%;
        min-height: 480px;
        aspect-ratio: 16/9;
        background: linear-gradient(160deg, #1a3a4a 0%, #2e6a9a 50%, #4ab0d8 100%);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

        .video-section .video-placeholder::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 70% at 50% 80%, rgba(74, 176, 216, 0.25) 0%, transparent 70%), radial-gradient(ellipse 80% 40% at 50% 100%, rgba(255, 200, 80, 0.15) 0%, transparent 60%);
        }

.comparison {
    background: #fff;
    padding: 80px 0;
    max-width: 1800px;
    width: 100%;
    border-radius: 13px;
    margin: 4em auto;
}

    .comparison .comparison-inner {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 60px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .comparison .comparison-inner .comparison-img-wrap {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            aspect-ratio: 3/4;
        }

            .comparison .comparison-inner .comparison-img-wrap img {
                width: 100%;
                height: 100%;
                -o-object-fit: cover;
                object-fit: cover;
                display: block;
            }

            .comparison .comparison-inner .comparison-img-wrap::before {
                content: "";
                position: absolute;
                inset: 0;
                background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), to(rgba(0, 0, 0, 0.35)));
                background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35) 100%);
                z-index: 1;
                border-radius: 22px;
            }

            .comparison .comparison-inner .comparison-img-wrap .comparison-img-inner {
                width: 100%;
                height: 100%;
                display: grid;
                grid-template-rows: 1fr;
            }

                .comparison .comparison-inner .comparison-img-wrap .comparison-img-inner .photo {
                    background: #c0dff0;
                    overflow: hidden;
                }

                    .comparison .comparison-inner .comparison-img-wrap .comparison-img-inner .photo img {
                        width: 100%;
                        height: 100%;
                        -o-object-fit: cover;
                        object-fit: cover;
                    }

    .comparison .comparison-content h3,
    .comparison .comparison-content h2 {
        font-weight: 900;
        color: #A0D4EF;
    }

    .comparison .comparison-content h3,
    .comparison .comparison-content h2 {
        font-size: 28px;
    }

@media screen and (min-width: 640px) {
    .comparison .comparison-content h3,
    .comparison .comparison-content h2 {
        font-size: calc(28px + 61 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .comparison .comparison-content h3,
    .comparison .comparison-content h2 {
        font-size: 89px;
    }
}

.comparison .comparison-content h3,
.comparison .comparison-content h2 {
    line-height: 100%;
}

.comparison .comparison-content h2 {
    color: var(--base-blue);
    margin-bottom: 0.4em;
}

.comparison .comparison-content .compare-table {
    width: 100%;
    border-collapse: collapse;
}

    .comparison .comparison-content .compare-table thead tr {
        border-bottom: 2px solid var(--sky);
    }

    .comparison .comparison-content .compare-table th {
        font-weight: 800;
    }

    .comparison .comparison-content .compare-table th {
        font-size: 16px;
    }

@media screen and (min-width: 640px) {
    .comparison .comparison-content .compare-table th {
        font-size: calc(16px + 6 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .comparison .comparison-content .compare-table th {
        font-size: 22px;
    }
}

.comparison .comparison-content .compare-table th {
    letter-spacing: -0.5%;
    padding: 8px 12px 12px;
    color: var(--base-blue);
}

    .comparison .comparison-content .compare-table th:first-child {
        text-align: left;
        color: var(--base-blue);
    }

    .comparison .comparison-content .compare-table th.col-us {
        color: var(--blue-mid);
    }

    .comparison .comparison-content .compare-table th.col-alt {
        color: #aaa;
    }

.comparison .comparison-content .compare-table td {
    padding: 14px 12px;
    font-weight: 400;
}

.comparison .comparison-content .compare-table td {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .comparison .comparison-content .compare-table td {
        font-size: calc(16px + 12 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .comparison .comparison-content .compare-table td {
        font-size: 28px;
    }
}

.comparison .comparison-content .compare-table td {
    border-bottom: 1px solid rgba(15, 126, 179, 0.2);
    color: var(--base-blue);
}

    .comparison .comparison-content .compare-table td .check {
        display: block;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        height: 3vw;
        background: var(--light-blue) url(../img/icon_check.svg) no-repeat center center;
        border-radius: 13px;
    }

    .comparison .comparison-content .compare-table td .cross {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        background: url(../img/icon_cross.svg) no-repeat center center;
    }

    .comparison .comparison-content .compare-table th.col-us,
    .comparison .comparison-content .compare-table td:nth-child(2) {
        text-align: center;
    }

    .comparison .comparison-content .compare-table th.col-alt,
    .comparison .comparison-content .compare-table td:nth-child(3) {
        text-align: center;
    }

.comparison .comparison-content .col-us-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
}

.footer-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2em;
    border-bottom: 1px solid var(--base-blue);
    margin-bottom: 2em;
}

    .footer-marquee h1 {
        display: inline-block;
        margin: 0;
        font-size: 150px;
        font-family: "Roboto", sans-serif;
        font-weight: 900;
    }

.footer-marquee-track {
    display: inline-block;
    white-space: nowrap;
}

.footer-wrapper {
    padding: 80px 0;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    color: #272727;
}

    .footer-wrapper .footer-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 48px;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

        .footer-wrapper .footer-menu .footer-menu-item {
            font-size: 16px;
        }

@media screen and (min-width: 640px) {
    .footer-wrapper .footer-menu .footer-menu-item {
        font-size: calc(16px + 4 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .footer-wrapper .footer-menu .footer-menu-item {
        font-size: 20px;
    }
}

.footer-wrapper .footer-menu .footer-menu-item {
    line-height: 1.4;
}

    .footer-wrapper .footer-menu .footer-menu-item .footer-menu-item-title {
        font-family: "Roboto", sans-serif;
        font-weight: 700;
    }

    .footer-wrapper .footer-menu .footer-menu-item .footer-menu-item-title {
        font-size: 16px;
    }

@media screen and (min-width: 640px) {
    .footer-wrapper .footer-menu .footer-menu-item .footer-menu-item-title {
        font-size: calc(16px + 12 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .footer-wrapper .footer-menu .footer-menu-item .footer-menu-item-title {
        font-size: 28px;
    }
}

.footer-wrapper .footer-menu .footer-menu-item .footer-menu-item-title {
    color: var(--base-blue);
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    margin-bottom: 1em;
    text-transform: uppercase;
}

.footer-wrapper .footer-menu .footer-menu-item ul li {
    padding: 4px 0;
    list-style: none;
}

    .footer-wrapper .footer-menu .footer-menu-item ul li a {
        font-size: 16px;
    }

@media screen and (min-width: 640px) {
    .footer-wrapper .footer-menu .footer-menu-item ul li a {
        font-size: calc(16px + 4 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .footer-wrapper .footer-menu .footer-menu-item ul li a {
        font-size: 20px;
    }
}

.footer-wrapper .footer-menu .footer-menu-item ul li a {
    font-weight: 400;
    text-decoration: none;
    color: #272727;
}

.footer-wrapper .rights {
    text-align: right;
}

/* ─── FADE IN ─── */
.fade-up {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

    .fade-up.visible {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 20px 24px 28px;
    z-index: 99;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    border-radius: 0 0 13px 13px;
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: calc(100% - 40px);
    left: 20px;
}

    .mobile-nav.open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .mobile-nav a {
        font-weight: 700;
        font-size: 1rem;
        color: var(--text-dark);
        text-decoration: none;
        padding: 8px 0;
        border-bottom: 1px solid var(--light-blue);
    }

    .mobile-nav .btn-shop {
        -ms-flex-item-align: start;
        align-self: flex-start;
        margin-top: 8px;
    }

.breadcrumb_wrapper {
    max-width: 1550px;
    margin: 0 auto;
    padding: 164px 0 40px;
}

    .breadcrumb_wrapper .breadcrumb {
        padding: 0 var(--grid-margin, 1.25em) 12px;
        color: var(--base-blue);
        opacity: 0.6;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 6px;
    }

        .breadcrumb_wrapper .breadcrumb a {
            color: inherit;
            text-decoration: none;
            font-size: 18px;
        }

            .breadcrumb_wrapper .breadcrumb a:hover {
                opacity: 0.8;
            }

        .breadcrumb_wrapper .breadcrumb span {
            opacity: 0.5;
        }

.static-container .breadcrumb_wrapper {
    max-width: 1136px;
}

    .static-container .breadcrumb_wrapper .breadcrumb {
        padding-left: 0;
    }

.back-to-btn {
    text-align: center;
    padding: 20px var(--grid-margin) 60px;
}

    .back-to-btn a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--base-blue);
        text-decoration: none;
        letter-spacing: 0.04em;
        opacity: 0.7;
        -webkit-transition: opacity 0.2s;
        transition: opacity 0.2s;
    }

        .back-to-btn a:hover {
            opacity: 1;
        }

/* ── Static Page Base ── */
.static-container {
    max-width: 1136px;
    margin: 0 auto;
    padding: 0 var(--grid-margin, 1.25em) 40px;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

    .page-header h1 {
        font-family: "Roboto", sans-serif;
    }

    .page-header h1 {
        font-size: 48px;
    }

@media screen and (min-width: 640px) {
    .page-header h1 {
        font-size: calc(48px + 32 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .page-header h1 {
        font-size: 80px;
    }
}

.page-header h1 {
    font-weight: 900;
    color: var(--base-blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 0.88rem;
    color: var(--base-blue);
}

/* ── Content Sections ── */
.copy-section {
    margin-bottom: 52px;
}

.copy-section-title {
    font-family: "Roboto Condensed", sans-serif;
}

.copy-section-title {
    font-size: 28px;
}

@media screen and (min-width: 640px) {
    .copy-section-title {
        font-size: calc(28px + 14 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .copy-section-title {
        font-size: 42px;
    }
}

.copy-section-title {
    font-weight: 900;
    color: var(--base-blue);
    margin-bottom: 24px;
    padding-bottom: 8px;
}

.copy-subsection {
    margin-bottom: 20px;
}

.copy-subsection-title {
    font-size: 22px;
}

@media screen and (min-width: 640px) {
    .copy-subsection-title {
        font-size: calc(22px + 6 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .copy-subsection-title {
        font-size: 28px;
    }
}

.copy-subsection-title {
    font-weight: 900;
    color: var(--base-blue);
    margin-bottom: 6px;
}

.copy-text {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .copy-text {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .copy-text {
        font-size: 18px;
    }
}

.copy-text {
    line-height: 1.7;
    color: #272727;
    margin-bottom: 10px;
}

/* Bullet list */
.copy-list {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0 14px;
    padding-left: 4px;
}

    .copy-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 10px;
    }

    .copy-list li {
        font-size: 16px;
    }

@media screen and (min-width: 640px) {
    .copy-list li {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .copy-list li {
        font-size: 18px;
    }
}

.copy-list li {
    color: #272727;
    line-height: 1.7;
}

    .copy-list li .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--base-blue);
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 6px;
        opacity: 0.45;
    }

/* Numbered list */
.copy-list.numbered {
    counter-reset: list-counter;
}

    .copy-list.numbered li {
        counter-increment: list-counter;
    }

        .copy-list.numbered li .dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--base-blue);
            opacity: 1;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            color: white;
            font-size: 0.65rem;
            font-weight: 700;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            margin-top: 2px;
        }

            .copy-list.numbered li .dot::before {
                content: counter(list-counter);
            }

/* Info box */
.info-box {
    background: #EFFAFF;
    border-radius: 13px;
    padding: 24px 20px;
    margin: 12px 0;
    color: #272727;
}

.info-box-title {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .info-box-title {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .info-box-title {
        font-size: 18px;
    }
}

.info-box-title {
    font-weight: 900;
    color: var(--base-blue);
    margin-bottom: 5px;
}

.info-box p {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .info-box p {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .info-box p {
        font-size: 18px;
    }
}

.info-box p {
    line-height: 1.7;
}

/* Payment Methods Grid */
.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0;
}

@media (max-width: 500px) {
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

.payment-item {
    background: #EFFAFF;
    border-radius: 13px;
    padding: 24px 20px;
    margin: 12px 0;
    color: #272727;
}

.payment-item-title {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .payment-item-title {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .payment-item-title {
        font-size: 18px;
    }
}

.payment-item-title {
    font-weight: 900;
    color: var(--base-blue);
    margin-bottom: 16px;
}

.payment-item p {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .payment-item p {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .payment-item p {
        font-size: 18px;
    }
}

.payment-item p {
    line-height: 1.7;
}

/* Delivery Steps */
.delivery-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    margin: 16px 0;
    position: relative;
}

    .delivery-steps::before {
        content: "";
        position: absolute;
        top: 16px;
        left: 16px;
        right: 16px;
        height: 2px;
        background: var(--base-blue);
        opacity: 0.15;
        z-index: 0;
    }

.delivery-step {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--base-blue);
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.step-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--base-blue);
    margin-bottom: 2px;
}

.step-desc {
    font-size: 0.72rem;
    color: var(--base-blue);
    opacity: 0.55;
    line-height: 1.4;
}

/* Warranty Grid */
.copy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0;
}

@media (max-width: 500px) {
    .copy-grid {
        grid-template-columns: 1fr;
    }
}

.copy-item {
    background: #EFFAFF;
    border-radius: 13px;
    padding: 24px 20px;
    margin: 12px 0;
    color: #272727;
}

.copy-item-title {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .copy-item-title {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .copy-item-title {
        font-size: 18px;
    }
}

.copy-item-title {
    font-weight: 900;
    color: var(--base-blue);
    margin-bottom: 16px;
}

.copy-item p {
    font-size: 16px;
}

@media screen and (min-width: 640px) {
    .copy-item p {
        font-size: calc(16px + 2 * (100vw - 640px) / 800);
    }
}

@media screen and (min-width: 1440px) {
    .copy-item p {
        font-size: 18px;
    }
}

.copy-item p {
    line-height: 1.7;
}

/* CTA Block */
.cta-block {
    background: var(--base-blue);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    margin: 60px 0 40px;
    color: white;
}

    .cta-block h3 {
        font-family: "Roboto Condensed", sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
        margin-bottom: 10px;
    }

    .cta-block p {
        font-size: 0.85rem;
        color: white;
        opacity: 0.75;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .cta-block .contact-details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 6px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .cta-block .contact-details span {
            font-size: 0.85rem;
            color: white;
            opacity: 0.9;
        }

        .cta-block .contact-details a {
            color: white;
            text-decoration: none;
        }

            .cta-block .contact-details a:hover {
                opacity: 0.75;
            }
/* ── Shop / Accessories listing ── */

.shop-header {
    padding: 200px var(--grid-margin) 4rem;
    text-align: center;
}

.shop-header h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 8vw, 89px);
    line-height: 1;
    letter-spacing: -0.005em;
    color: var(--base-blue);
}

.shop-header p {
    font-size: 18px;
    font-weight: 400;
    color: #6c6c6c;
    margin-top: 0.75rem;
}

.shop-alert {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
}

.shop-alert.success {
    background: #d1f0e0;
    color: #1a6e3a;
}

.shop-section {
    padding: 0 var(--grid-margin) 6rem;
}

/* Product card content elements */
.product-card-visual {
    width: 100%;
    aspect-ratio: 1;
    display: block;
}

.product-card-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b8ddf0 0%, #7fbdd9 100%);
    border-radius: 0.375em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--base-blue);
    opacity: 0.5;
    font-size: 0.85rem;
}

.product-card .card-sub-info {
    margin: 0;
    color: #6c6c6c;
}

.product-card .card-price {
    margin: 0;
}

.product-card-name {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.5vw, 30px);
    color: var(--base-blue);
    text-decoration: none;
    line-height: 1.15;
}

.product-card-name:hover {
    color: #0a5e87;
}

.product-card-desc {
    font-size: 15px;
    color: #5a7a8a;
    line-height: 1.5;
    margin: 0;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.btn-add-to-cart {
    background: var(--base-blue);
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: box-shadow 0.25s, transform 0.2s;
    white-space: nowrap;
}

.btn-add-to-cart:hover {
    box-shadow: 0 6px 18px rgba(15, 126, 179, 0.45);
    transform: translateY(-2px);
}

.btn-out-of-stock {
    background: transparent;
    color: #aaa;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap;
}

.shop-empty {
    text-align: center;
    padding: 5rem 1rem;
    font-size: 18px;
    color: #6c6c6c;
}

/* ── Cart page ── */

.cart-page {
    padding: 180px var(--grid-margin) 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-breadcrumb {
    font-size: 13px;
    color: #6c6c6c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cart-breadcrumb a {
    color: #6c6c6c;
    text-decoration: none;
}

.cart-breadcrumb a:hover {
    color: var(--base-blue);
}

.cart-breadcrumb .current {
    color: var(--base-blue);
    font-weight: 600;
}

.cart-heading {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--base-blue);
    margin-bottom: 2rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

.cart-item-row {
    display: grid;
    grid-template-columns: 88px 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
    background: #fff;
    border: 1.5px solid #e0eef6;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
}

.cart-item-img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 10px;
    background: #b8ddf0;
}

.cart-item-img-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    background: linear-gradient(135deg, #b8ddf0 0%, #7fbdd9 100%);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cart-item-name {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--base-blue);
    margin: 0;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--base-blue);
    background: transparent;
    color: var(--base-blue);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    padding: 0;
}

.qty-btn:hover {
    background: var(--base-blue);
    color: #fff;
}

.qty-value {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--base-blue);
    min-width: 1.5rem;
    text-align: center;
}

.cart-item-total {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--base-blue);
    white-space: nowrap;
    text-align: right;
}

.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #b0bec5;
    padding: 4px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.cart-remove-btn:hover {
    color: #e53935;
}

.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--base-blue);
    text-decoration: none;
    background: #EFFAFF;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.btn-continue:hover {
    box-shadow: 0 4px 14px rgba(15, 126, 179, 0.3);
    transform: translateY(-1px);
    color: var(--base-blue);
}

.cart-summary {
    background: #EFFAFF;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.summary-title {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.01em;
    color: var(--base-blue);
    margin: 0 0 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--base-blue);
}

.summary-row .label { font-weight: 400; }
.summary-row .value { font-weight: 600; }

.summary-free-shipping {
    font-size: 13px;
    color: #1a7a42;
    font-weight: 500;
}

.summary-divider {
    border: none;
    border-top: 1.5px solid #a0d4ef;
    margin: 0.25rem 0;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-total-label {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: var(--base-blue);
}

.summary-total-value {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--base-blue);
}

.btn-checkout {
    width: 100%;
    background: var(--base-blue);
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-checkout:disabled {
    background: #b0bec5;
    cursor: not-allowed;
    opacity: 1;
    box-shadow: none;
}

.btn-checkout:not(:disabled):hover {
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(15, 126, 179, 0.4);
    color: #fff;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.25rem;
}

.secure-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--base-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.secure-badge-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--base-blue);
}

.secure-badge-text span {
    font-size: 11px;
    color: #6c6c6c;
}

.cart-empty {
    text-align: center;
    padding: 5rem 1rem;
}

.cart-empty p {
    font-size: 20px;
    color: #6c6c6c;
    margin-bottom: 1.5rem;
}

.cart-alert {
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 14px;
}

.cart-alert.success { background: #d1f0e0; color: #1a6e3a; }
.cart-alert.error   { background: #fde8e8; color: #b71c1c; }

/*# sourceMappingURL=tubystyle.css.map */
