header {
    border-bottom: 1px solid var(--yellow-secondary);
    color: var(--yellow-secondary);
    padding: 10px 0;
    transition: all 0.3s ease;
}

header.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 10px 0;
    background: var(--blue-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    background: rgba(4, 36, 54, 0.75);
    backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
    header {
        padding: 30px 0;
    }

    header.header--fixed {
        padding: 20px 0;
    }

    header.header--fixed .logo {
        width: 120px !important;
        min-width: 120px !important;
    }
}

.menu-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.menu-mobile .logo-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.menu-mobile .menu-list {
    display: flex;
    justify-content: flex-end !important;
    gap: 10px;
}

.menu-mobile .menu-wrapper {
    position: absolute;
    top: 150%;
    height: 0;
    right: 0;
    opacity: 0;
    width: 200px;
    max-width: 90%;
    background: rgba(4, 36, 54, 0.95);
    z-index: 1000;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid var(--yellow-secondary);
    margin: 0;

    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

header .menu-mobile .menu-wrapperul.menu-list li {
    width: 100%;
}

header .menu-mobile .menu-wrapper ul.menu-list li a.menu-link {
    font-size: 18px;
}

.openMenu .menu-mobile .menu-wrapper {
    top: 100%;
    height: auto;
    opacity: 1;
    margin-top: 20px;
}

.menu-mobile .menu-wrapper ul.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-desktop {
    display: none;
}

@media (min-width: 992px) {
    .menu-mobile {
        display: none;
    }

    .menu-desktop {
        display: flex;
    }
}

header .menu.menu-desktop {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

@media (min-width: 1400px) {
    header .menu.menu-desktop {
        gap: 50px;
    }
}

header .menu ul.menu-list {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 10px;
    margin: 0;
    padding: 0;
}

header .menu ul.menu-list li a.menu-link {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: var(--yellow-secondary);
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;

    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
}

header .menu ul.menu-list li a.menu-link:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--yellow-secondary);
    transition: all 0.3s ease;
}

header .menu ul.menu-list li a.menu-link.current:after {
    transform: scaleX(1);
}

header .menu ul.menu-list li a.menu-link:hover {
    color: var(--yellow-primary);
}

header .menu ul.menu-list li a.menu-link.current {
    color: var(--white);
}

header .btn-outline-warning {
    text-transform: uppercase;
    border-color: var(--yellow-secondary);
    color: var(--yellow-secondary);
    text-wrap: nowrap;
    font-size: 14px;
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
}

@media (max-width: 360px) {
    header .btn-outline-warning {
        padding: 5px;
    }
}

header .menu .logo {
    width: 120px;
    /* min-width: 120px; */
}

header .menu .logo .logo-link {
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    header .menu .logo {
        width: 125px;
        min-width: 125px;
    }

    header .btn-outline-warning {
        font-size: 14px;
        padding: 3px 5px 1px;
    }

    header .menu ul.menu-list li a.menu-link {
        font-size: 14px;
    }
}

@media (min-width: 1300px) {
    header .menu .logo {
        width: 145px;
        min-width: 145px;
    }

    header .btn-outline-warning {
        font-size: 16px;
        padding: 3px 10px 1px;
    }

    header .menu ul.menu-list li a.menu-link {
        font-size: 16px;
    }
}

@media (min-width: 1500px) {
    header .menu .logo {
        width: 165px;
        min-width: 165px;
    }

    header .btn-outline-warning {
        font-size: 16px;
        padding: 3px 10px 1px;
    }

    header .menu ul.menu-list li a.menu-link {
        font-size: 18px;
    }
}

header .dropdown-language .dropdown-menu {
    background: var(--blue-primary);
    border: 1px solid var(--yellow-secondary);
    border-radius: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    min-width: fit-content;
    box-sizing: border-box;
    box-shadow: none;
    overflow: hidden;
}

header .dropdown-language .dropdown-menu li a.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: var(--yellow-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
}

header .dropdown-language .dropdown-menu li a.dropdown-item span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

header .dropdown-language .dropdown-menu li a.dropdown-item span.ico {
    max-width: 20px;
    min-width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

header .dropdown-language .dropdown-menu li a.dropdown-item span.ico img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

header .dropdown-language .dropdown-menu li a.dropdown-item:hover {
    background: var(--yellow-secondary);
    color: var(--blue-primary);
}

header .dropdown-language .dropdown-menu li a.dropdown-item.active {
    background: var(--yellow-primary);
    color: var(--blue-primary);
}

header .btn-outline-warning:hover,
header .btn-outline-warning:focus,
header .btn-outline-warning:active {
    background: transparent !important;
    color: var(--yellow-primary) !important;
    border-color: var(--yellow-primary) !important;
}

footer,
footer a {
    color: var(--yellow-secondary);
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--yellow-primary);
}

footer a.current {
    color: var(--white);
}

footer .content {
    padding: 50px 0 30px;
}

footer .content .col-brand .logo {
    width: 100%;
    max-width: 160px;
    margin-bottom: 22px;
}

@media (min-width: 1200px) {
    footer .content .col-brand .logo {
        max-width: 220px;
        margin-bottom: 22px;
    }
}

footer .content .social-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .content .social-list li {
    margin: 0;
}

footer .content .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

footer .content .social-link:hover,
footer .content .social-link:focus-visible {
    background: var(--yellow-secondary);
    color: var(--blue-primary);
    outline: none;
}

footer .content .social-link svg {
    display: block;
    width: 18px;
    height: 18px;
}

footer .content .footer-heading {
    color: var(--yellow-secondary);
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 18px;
}

footer .content .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

footer .content .footer-links li {
    margin: 0;
}

footer .content .footer-link {
    color: var(--yellow-secondary);
    font-family: "Bahn", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

footer .content .footer-link:hover,
footer .content .footer-link:focus-visible {
    color: var(--yellow-primary);
    outline: none;
}

footer .content .footer-link.current {
    color: var(--white);
}

footer .content .footer-link.current:hover,
footer .content .footer-link.current:focus-visible {
    color: var(--yellow-primary);
}

footer .copyright {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--yellow-secondary);
}

footer .copyright p {
    font-size: 14px;
    margin: 0;
}

footer .copyright ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

footer .copyright ul li {
    margin: 0;
}

footer .copyright ul li a {
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
}

@media (max-width: 400px) {
    footer {
        padding-bottom: 70px;
    }

    footer .col-menu {
        width: 100%;
        min-width: 100%;
        margin-top: 30px;
    }

    footer .col-brand,
    footer .col-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer .col-menu a {
        text-align: center;
    }
}

.section-bottom-border-yellow-secondary {
    border-bottom: 4px solid var(--yellow-secondary);
}

.section-with-padding-top {
    padding-top: 10vw;
}

.section-with-padding-bottom {
    padding-bottom: 10vw;
}

@media (min-width: 1900px) {
    .section-with-padding-top {
        padding-top: 17vw;
    }

    .section-with-padding-bottom {
        padding-bottom: 17vw;
    }

    .section-with-padding-top-half {
        padding-top: 10vw;
    }

    .section-with-padding-bottom-half {
        padding-bottom: 10vw;
    }

    .section-with-padding-top-quarter {
        padding-top: 5vw;
    }

    .section-with-padding-bottom-quarter {
        padding-bottom: 5vw;
    }
}

.section-hero-with-sidebar {
    /* Tune these to control the sidebar / video frame and the foreground overlay.
       --hero-video-aspect: video's natural aspect ratio (width / height) - taken from the poster bg-whiskey.png (561x865)
       --hero-video-height: how tall the video frame should be on screen
       --hero-bottles-aspect: bottles overlay aspect ratio (width / height) - from hero-home-bottles.png (2346x1846)
       --hero-bottles-height: how tall the bottles overlay should be */
    /* --hero-video-aspect: 561 / 865; */
    /* --hero-video-aspect: 1080 / 1920;
    --hero-video-height: 50dvh;
    --hero-bottles-aspect: 2346 / 1846;
    --hero-bottles-height: calc(var(--hero-video-height) * 0.85); */
}

.section-hero-with-sidebar .inner {
    gap: 20px;
}

@media (min-width: 1600px) {
    .section-hero-with-sidebar {
        --hero-video-height: 70dvh;
    }
}

.section-hero-with-sidebar .inner {
    position: relative;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: all 1.6s ease;
    align-items: center;
}

.section-hero-with-sidebar .inner .content {
    width: 100%;
    padding: 0 0 5vh 0;
}

@media (min-width: 768px) {
    .section-hero-with-sidebar .inner .content {
        background: url("../img/hero-home-image-big.png") no-repeat right bottom;
        background-image: image-set(url("../img/hero-home-image-big.webp") type("image/webp"),
                url("../img/hero-home-image-big.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 80%;
        background-size: cover;
        /* transition: all 1.6s ease; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-self: stretch;
        padding: 5vh 0;
    }
}

@media (min-width: 1000px) {
    .section-hero-with-sidebar .inner .content {
        padding: 100px 0;
        background-position: right bottom;
    }
}

@media (min-width: 1200px) {
    .section-hero-with-sidebar .inner .content {
        padding: 70px 0;
        background-position: right bottom;
    }
}

@media (min-width: 1700px) {
    .section-hero-with-sidebar .inner .content {
        padding: 10vw 0;
        background-position: right bottom;
    }
}

.section-hero-with-sidebar .inner .sidebar {
    display: none;
    min-width: 25%;
    overflow: hidden;
    position: relative;
    transition: all 1.6s ease;
}

@media (min-width: 1200px) {
    .section-hero-with-sidebar .inner .sidebar {
        display: block;
        min-width: 30%;
    }
}

@media (min-width: 1400px) {
    .section-hero-with-sidebar .inner .sidebar {
        min-width: 25%;
    }
}

@media (min-width: 1600px) {
    .section-hero-with-sidebar .inner .sidebar {
        min-width: 27%;
    }
}

@media (min-width: 1920px) {
    .section-hero-with-sidebar .inner .sidebar {
        min-width: 24%;
    }
}

.section-hero-with-sidebar .inner .sidebar .bg {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 178%;
    overflow: hidden;
}

.section-hero-with-sidebar .inner .sidebar .bg::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-hero-with-sidebar .inner .sidebar .bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-hero-with-sidebar .inner .sidebar:hover .bg .actions {
    opacity: 1;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background: rgba(4, 36, 54, 0.55);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions button:hover,
.section-hero-with-sidebar .inner .sidebar .bg .actions button:focus-visible {
    background: rgba(4, 36, 54, 0.85);
    border-color: var(--yellow-secondary);
    color: var(--yellow-secondary);
    outline: none;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions button svg {
    display: block;
    fill: currentColor;
}

.section-hero-with-sidebar .toggleMute .icon-mute,
.section-hero-with-sidebar .toggleMute .icon-unmute,
.section-hero-with-sidebar .playFromBegining .icon-playFromBegining {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.section-hero-with-sidebar .toggleMute .icon-unmute {
    display: none;
}

.section-hero-with-sidebar .toggleMute.is-muted .icon-mute {
    display: inline-flex;
}

.section-hero-with-sidebar .toggleMute.is-muted .icon-unmute {
    display: none;
}

.section-hero-with-sidebar .toggleMute:not(.is-muted) .icon-mute {
    display: none;
}

.section-hero-with-sidebar .toggleMute:not(.is-muted) .icon-unmute {
    display: inline-flex;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions button {
    background: #042436ac;
    color: var(--yellow-secondary);
    border: 2px solid var(--yellow-secondary);
    padding: 5px;
    border-radius: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions button svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.section-hero-with-sidebar .inner .sidebar .bg .actions button:hover {
    background: var(--yellow-secondary);
    color: var(--blue-primary);
}

.section-creators {
    background: url("../img/bg-creators.png") no-repeat center center;
    background-image: image-set(url("../img/bg-creators.webp") type("image/webp"),
            url("../img/bg-creators.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.section-our-creators {
    background: url("../img/bg-hero-our-creators.png") no-repeat center center;
    background-image: image-set(url("../img/bg-hero-our-creators.webp") type("image/webp"),
            url("../img/bg-hero-our-creators.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.section-discover-hero {
    background: url("../img/bg-hero-home-image.png") no-repeat center center;
    background-image: image-set(url("../img/bg-hero-home-image.webp") type("image/webp"),
            url("../img/bg-hero-home-image.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
}

@media (min-width: 1600px) {
    .section-discover-hero {
        background-position: right bottom;
    }
}

.section-join {
    background: url("../img/bg-footer.png") no-repeat center center;
    background-image: image-set(url("../img/bg-footer.webp") type("image/webp"),
            url("../img/bg-footer.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}


.section-discover {
    background: url("../img/bg-discover-our-whiskies.png") no-repeat center center;
    background-image: image-set(url("../img/bg-discover-our-whiskies.webp") type("image/webp"),
            url("../img/bg-discover-our-whiskies.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
}



.section-discover .image img {
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-discover {
        background-position: right bottom;
    }

    .section-discover .image img {
        max-width: 100%;
    }
}

@media (max-width: 767.09px) {
    .section-unfolded {
        background: none !important;
        padding-top: 0 !important;
    }
}

.section-unfolded.section-allen {
    background: url("../img/creators/bg-allen-anderson-no-line.png") no-repeat center center;
    background-image: image-set(url("../img/creators/bg-allen-anderson-no-line.webp") type("image/webp"),
            url("../img/creators/bg-allen-anderson-no-line.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-unfolded.section-dragos {
    background: url("../img/creators/bg-dragos-mateescu-no-line.png") no-repeat center center;
    background-image: image-set(url("../img/creators/bg-dragos-mateescu-no-line.webp") type("image/webp"),
            url("../img/creators/bg-dragos-mateescu-no-line.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-unfolded.section-virgil {
    background: url("../img/creators/bg-virgil-iantu-no-line.png") no-repeat center center;
    background-image: image-set(url("../img/creators/bg-virgil-iantu-no-line.webp") type("image/webp"),
            url("../img/creators/bg-virgil-iantu-no-line.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-unfolded .text {
    border: 1px solid var(--yellow-secondary);
    padding: 20px;
    border-radius: 10px;
    background: rgba(4, 36, 54, 0.55);
}

@media (min-width: 992px) {
    .section-unfolded .text p {
        font-size: clamp(14px, 1.3vw, 28px);
    }
}

.section-unfolded .text :last-child {
    margin-bottom: 0;
}

.creators-inline .title {
    margin-bottom: 20px;
    font-size: 16px;
}

.section-creators .col-item p {
    font-size: 14px;
}

@media (min-width: 400px) {
    .creators-inline .title {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .creators-inline .title {
        font-size: 24px;
    }

    .section-creators .col-item p {
        font-size: 16px;
    }
}

@media (min-width: 929px) {
    .creators-inline .title {
        font-size: 28px;
    }

    .section-creators .col-item p {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .creators-inline .title {
        font-size: 32px;
    }

    .section-creators .col-item p {
        font-size: 16px;
    }
}

.section-product {
    border-bottom: 2px solid var(--yellow-secondary);
}

/* .section-product .container-fluid {
    padding: 0;
}

.section-product .container-fluid .row {
    margin: 0;
    padding: 0;
} */

.section-product .col-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-product .col-text .text {
    padding: 20px;
}

@media (min-width: 1200px) {
    .section-product .col-text .text {
        padding: 2vw 3vw;
        max-width: 590px;
    }
}

@media (min-width: 1920px) {
    .section-product .col-text .text {
        max-width: 1200px;
    }
}

@media (min-width: 768px) {
    .section-product .col-text {}

    .section-product .col-image {
        position: relative;
    }

    .section-product .col-image .image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .section-product .col-image .image>picture img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


    .section-product .col-text {
        order: 1;
    }

    .section-product .col-image {
        order: 2;
    }

    .section-product:nth-child(even) .col-text {
        order: 2;
    }

    .section-product:nth-child(even) .col-image {
        order: 1;
    }
}

@media (min-width: 1400px) {
    .section-product .col-text {
        padding-right: 5%;
        padding-left: 0;
    }

    .section-product:nth-child(even) .col-text {
        padding-left: 5%;
        padding-right: 0;
    }
}

.section-product .col-image .image {
    position: relative;
}

@media (min-width: 1200px) {
    .section-product .col-image .image {
        width: 100%;
        height: 0;
        padding-bottom: 115%;
    }
}

@media (min-width: 1600px) {
    .section-product .col-image .image {
        width: 100%;
        height: 0;
        padding-bottom: 75%;
    }
}

.section-product .col-image .image img {
    display: block;
    width: 100%;
}

.section-product .col-image .image .logo {
    position: absolute;
    width: 30%;
    padding: 3%;
}

.section-product .col-image .image .logo img {
    display: block;
    width: 100%;
}

.section-product .col-image .image.logo-bottom-right .logo {
    bottom: 0;
    right: 0;
}

.section-product .col-image .image.logo-bottom-left .logo {
    bottom: 0;
    left: 0;
}

.section-product .col-image .image.logo-top-right .logo {
    top: 0;
    right: 0;
}

.section-product h2 {
    font-family: 'Bahn Bold SemiCond', 'Arial Narrow', Arial, sans-serif;
    font-size: 34px;
}

.section-product p {
    font-family: 'Bahn Cond SemiLight', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
}

@media (min-width: 1200px) {
    .section-product h2 {
        font-size: 42px;
    }
}

@media (min-width: 1600px) {
    .section-product h2 {
        font-size: 72px;
    }
}

@media (max-width: 1399.98px) {
    .section-product-hero {
        padding: 20px 0 !important;
    }

    .section-product-hero .col-text {
        padding: 0;
    }

    .section-product-hero .col-text .text {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .section-product-detailed .mobile-image,
    .section-product-hero .mobile-image {
        aspect-ratio: 20 / 9;
        padding-top: 50px;
        padding-bottom: 50px;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-bottom: 20px;
        position: relative;
    }

    .section-product-hero .mobile-image .logo {
        max-width: 30%;
        width: 200px;
    }

    .section-product-hero-highland-mountain .mobile-image {
        background: url("../img/products/hero-highland-mountain.png") no-repeat center center;
        background-image: image-set(url("../img/products/hero-highland-mountain.webp") type("image/webp"),
                url("../img/products/hero-highland-mountain.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
    }

    .section-product-hero-jaar .mobile-image {
        background: url("../img/products/hero-jaar.png") no-repeat center center;
        background-image: image-set(url("../img/products/hero-jaar.webp") type("image/webp"),
                url("../img/products/hero-jaar.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-hero-highland-peak .mobile-image {
        background: url("../img/products/highland-peak/hero-highland-peak-2.png") no-repeat center center;
        background-image: image-set(url("../img/products/highland-peak/hero-highland-peak-2.webp") type("image/webp"),
                url("../img/products/highland-peak/hero-highland-peak-2.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-hero-carpathian .mobile-image {
        background: url("../img/products/hero-carpathian.png") no-repeat center center;
        background-image: image-set(url("../img/products/hero-carpathian.webp") type("image/webp"),
                url("../img/products/hero-carpathian.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-highland-mountain .mobile-image {
        background: url("../img/products/product-highland-moutain.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-highland-moutain.webp") type("image/webp"),
                url("../img/products/product-highland-moutain.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-highland-peak .mobile-image {
        background: url("../img/products/product-highland-peak.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-highland-peak.webp") type("image/webp"),
                url("../img/products/product-highland-peak.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-highland-mountain-peated .mobile-image {
        background: url("../img/products/product-highland-moutain-peated.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-highland-moutain-peated.webp") type("image/webp"),
                url("../img/products/product-highland-moutain-peated.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-jaar-sherry-cask .mobile-image {
        background: url("../img/products/product-jaar-sherry-cask.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-jaar-sherry-cask.webp") type("image/webp"),
                url("../img/products/product-jaar-sherry-cask.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 38% bottom 10%;
        background-size: cover;
    }

    .section-product-detailed-jaar-bourbon-cask .mobile-image {
        background: url("../img/products/product-jaar-bourbon-cask.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-jaar-bourbon-cask.webp") type("image/webp"),
                url("../img/products/product-jaar-bourbon-cask.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 38% bottom;
        background-size: cover;
    }

    .section-product-detailed-jaar-oak-cask .mobile-image {
        background: url("../img/products/product-jaar-oak-cask.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-jaar-oak-cask.webp") type("image/webp"),
                url("../img/products/product-jaar-oak-cask.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 38% bottom;
        background-size: cover;
    }
}

@media (min-width: 1400px) {
    .section-product-hero-highland-mountain {
        background: url("../img/products/hero-highland-mountain.png") no-repeat center center;
        background-image: image-set(url("../img/products/hero-highland-mountain.webp") type("image/webp"),
                url("../img/products/hero-highland-mountain.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
    }

    .section-product-hero-jaar {
        background: url("../img/products/hero-jaar-2.png") no-repeat center center;
        background-image: image-set(url("../img/products/hero-jaar-2.webp") type("image/webp"),
                url("../img/products/hero-jaar-2.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-hero-highland-peak {
        background: url("../img/products/highland-peak/hero-highland-peak-2.png") no-repeat center center;
        background-image: image-set(url("../img/products/highland-peak/hero-highland-peak-2.webp") type("image/webp"),
                url("../img/products/highland-peak/hero-highland-peak-2.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
    }

    .section-product-hero-highland-peak::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        z-index: 1;
    }

    .section-product-hero-highland-peak .inner {
        position: relative;
        z-index: 2;
    }

    .section-product-hero-carpathian {
        background: url("../img/products/hero-carpathian.png") no-repeat center center;
        background-image: image-set(url("../img/products/hero-carpathian.webp") type("image/webp"),
                url("../img/products/hero-carpathian.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-highland-mountain {
        background: url("../img/products/product-highland-moutain.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-highland-moutain.webp") type("image/webp"),
                url("../img/products/product-highland-moutain.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-highland-peak {
        background: url("../img/products/product-highland-peak.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-highland-peak.webp") type("image/webp"),
                url("../img/products/product-highland-peak.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-highland-mountain-peated {
        background: url("../img/products/product-highland-moutain-peated.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-highland-moutain-peated.webp") type("image/webp"),
                url("../img/products/product-highland-moutain-peated.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-jaar-sherry-cask {
        background: url("../img/products/product-jaar-sherry-cask.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-jaar-sherry-cask.webp") type("image/webp"),
                url("../img/products/product-jaar-sherry-cask.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 38% bottom 10%;
        background-size: cover;
    }

    .section-product-detailed-jaar-bourbon-cask {
        background: url("../img/products/product-jaar-bourbon-cask.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-jaar-bourbon-cask.webp") type("image/webp"),
                url("../img/products/product-jaar-bourbon-cask.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 38% bottom;
        background-size: cover;
    }

    .section-product-detailed-jaar-oak-cask {
        background: url("../img/products/product-jaar-oak-cask.png") no-repeat center center;
        background-image: image-set(url("../img/products/product-jaar-oak-cask.webp") type("image/webp"),
                url("../img/products/product-jaar-oak-cask.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 38% bottom;
        background-size: cover;
    }
}

.section-product .title.has-badge {
    align-items: center;
    margin-bottom: 30px;
}

.section-product .title.has-badge h2 {
    margin: 0;
}

.section-product .title.has-badge .image-badge {
    min-width: 100px;
}

.section-product .title.has-badge .image-badge img {
    display: block;
    width: 100%;
}

.bg-blue-jaar {
    background: url("../img/bg-blue-jaar.png") no-repeat center center;
    background-image: image-set(url("../img/bg-blue-jaar.webp") type("image/webp"),
            url("../img/bg-blue-jaar.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-product-jaar .col-text .text {
    background: none;
}

.section-product-hero .logo {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow-secondary);
    max-width: 60%;
    width: 60%;
}

@media (min-width: 1400px) {
    .section-product-hero .logo {
        padding-bottom: 20px;
    }
}

.section-product-hero.section-product-hero-jaar .logo {
    width: 44%;
}

.section-product-hero .logo img {
    display: block;
    width: 100%;
}

.section-product-hero .text {
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
    font-weight: 300;
    font-size: 22px;
}

.section-product-detailed {
    position: relative;
}

.section-product-detailed .actions {
    width: 600px;
    max-width: 100%;
}

@media (max-width: 1399.98px) {
    .section-product-detailed {
        padding: 0 0 20px;
    }

    .section-product-detailed.section-product-detailed-slider {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .section-product-detailed {
        padding: 0 0 20px;
    }

    .section-product-detailed .col-image {
        /* padding: 0; */
    }

    .section-product-detailed .col-image img {
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

.section-product-detailed.section-product-detailed-slider .text {
    padding: 20px 0 0;
}

.section-product-detailed:not(.section-product-detailed-slider) .text {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    background: rgba(4, 36, 54, 0.85);
    position: relative;
}

@media (max-width: 1399.98px) {
    .section-product-detailed:not(.section-product-detailed-slider) .col-text {
        padding: 0;
    }
}

@media (min-width: 1400px) {
    .section-product-detailed .text {
        padding: 20px;
    }

    .section-product-detailed-jaar {
        padding-top: 5vw;
        padding-bottom: 35vw;
    }
}

.section-product-detailed .text .title-with-bagde {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.section-product-detailed .text .title-with-bagde h2 {
    margin: 0;
}

.section-product-detailed .text .title-with-bagde .image-badge {
    position: relative;
    width: 100px;
}

@media (min-width: 1400px) {
    .section-product-detailed .text .title-with-bagde {
        display: flex;
        gap: 10px;
        align-items: start;
        margin-bottom: 20px;
    }

    .section-product-detailed .text .title-with-bagde {
        padding-right: 50px;
    }

    .section-product-detailed .text .title-with-bagde .image-badge {
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        transform: translate(50%, -50%);
    }
}

.section-product-detailed .text .image-badge img {
    display: block;
    width: 100%;
}

/* @media(min-width: 768px) {
    .section-product-detailed .text .image-badge img {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        transform: translate(50%, 50%);
        width: 100px;
        min-width: 100px;
        max-width: 20%;
    }
} */

.section-product-detailed .logo {
    position: absolute;
    top: 3vw;
    right: 3vw;
    width: 120px;
    max-width: 20%;
}

.section-product-detailed.section-product-detailed-jaar .logo {
    max-width: 15%;
}

@media (min-width: 992px) {
    .section-product-detailed .logo {
        width: 240px;
        max-width: 20%;
    }
}

.section-product-detailed.section-product-detailed-jaar .col-image .logo {
    top: auto;
    bottom: 3vw;
    width: 180px;
    max-width: 25%;
}

.section-product-detailed .logo img {
    display: block;
    width: 100%;
}

.section-product-detailed .thumbs {
    display: flex;
    gap: 10px;
    justify-content: start;
    width: 100%;
    margin-top: 20px;
}

@media (min-width: 1400px) {
    .section-product-detailed .thumbs {
        gap: 20px;
        justify-content: end;
        margin-top: 0;
    }
}

.section-product-detailed .thumbs .thumb {
    width: 25%;
}

.section-product-detailed .thumbs .thumb picture {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 100%;
}

.section-product-detailed .thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.section-product-detailed-slider .swiper-wrapper {
    align-items: stretch;
}

.section-product-detailed-slider .inner {
    width: 100%;
    height: 100%;
    padding: 20px 0;
}

@media (min-width: 992px) {
    .section-product-detailed-slider .inner {
        padding: 5vw 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

    /* .section-product-detailed-slider .inner::after {
        content: '';
        position: absolute;
        width: 50%;
        inset: 0;
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    }

    .section-product-detailed-slider .inner .container {
        position: relative;
        z-index: 1;
    } */
}

/* .section-product-detailed-slider .inner .col-text .text {
    opacity: 0;
    transition: all 0.3s ease;
}

.section-product-detailed-slider .swiper-slide-active .inner .col-text .text {
    opacity: 1;
} */

@media (min-width: 1200px) {
    .section-product-detailed-slider .swiper {
        /* --slide-peek: 100px; */
    }

    .section-product-detailed-slider .inner {
        padding: 5vw 90px 0;
    }
}

.section-product-detailed-slider .swiper-buttons {
    padding: 20px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, 0.85); */
}

@media (min-width: 992px) {
    .section-product-detailed-slider .swiper-buttons {
        padding: 0;
    }
}

.section-product-detailed-slider .swiper-buttons .swiper-button {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.section-product-detailed-slider .swiper-buttons .swiper-button:hover {
    background: var(--yellow-primary);
}

@media (min-width: 1400px) {
    .section-product-detailed-slider .swiper-buttons .swiper-button {
        width: 60px;
        height: 60px;
    }
}

.section-product-detailed-slider .swiper-buttons .swiper-button::after {
    display: none !important;
}

.section-product-detailed-slider .swiper-buttons .swiper-button img {
    display: block;
    width: 30%;
    user-select: none;
}

.section-product-detailed-slider .swiper-slide {
    display: flex;
    height: auto;
}

@media (min-width: 992px) {
    .section-product-detailed-slider .swiper {}

    .section-product-detailed-slider .swiper-slide {
        display: flex;
        height: auto;
    }

    .section-product-detailed-slider .swiper-buttons .swiper-button {
        position: absolute !important;
        top: 50%;
        transform: translateY(-50%);
    }

    .section-product-detailed-slider .swiper-buttons .swiper-button.swiper-button-prev {
        left: 12px;
    }

    .section-product-detailed-slider .swiper-buttons .swiper-button.swiper-button-next {
        right: 12px;
    }
}

/* 
@media (min-width: 992px) {
    .section-product-detailed-slider .inner.burgundy {
        background: url("../img/products/carpathian/burgundy.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/burgundy.webp") type("image/webp"),
                url("../img/products/carpathian/burgundy.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.commandaria {
        background: url("../img/products/carpathian/commandaria.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/commandaria.webp") type("image/webp"),
                url("../img/products/carpathian/commandaria.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.chianti {
        background: url("../img/products/carpathian/chianti.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/chianti.webp") type("image/webp"),
                url("../img/products/carpathian/chianti.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.peated {
        background: url("../img/products/carpathian/peated.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/peated.webp") type("image/webp"),
                url("../img/products/carpathian/peated.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.cognac {
        background: url("../img/products/carpathian/cognac.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/cognac.webp") type("image/webp"),
                url("../img/products/carpathian/cognac.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.triple-wood {
        background: url("../img/products/carpathian/triple-wood.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/triple-wood.webp") type("image/webp"),
                url("../img/products/carpathian/triple-wood.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.bourbon {
        background: url("../img/products/carpathian/bourbon.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/bourbon.webp") type("image/webp"),
                url("../img/products/carpathian/bourbon.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.feteasca {
        background: url("../img/products/carpathian/feteasca.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/feteasca.webp") type("image/webp"),
                url("../img/products/carpathian/feteasca.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    .section-product-detailed-slider .inner.iberic {
        background: url("../img/products/carpathian/iberic.png") no-repeat center center;
        background-image: image-set(url("../img/products/carpathian/iberic.webp") type("image/webp"),
                url("../img/products/carpathian/iberic.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
} */

/* .section-product.section-product-highland-mountain {
    background: url('../img/products/bg-highland-mountain.png') no-repeat center center;
    background-image: image-set(url('../img/products/bg-highland-mountain.webp') type('image/webp'),
            url('../img/products/bg-highland-mountain.png') type('image/png'));
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.section-product.section-product-jaar {
    background: url('../img/products/bg-jaar.png') no-repeat 39% center;
    background-image: image-set(url('../img/products/bg-jaar.webp') type('image/webp'),
            url('../img/products/bg-jaar.png') type('image/png'));
    background-repeat: no-repeat;
    background-position: 39% center;
    background-size: cover;
}

.section-product.section-product-carpathian-single-malt {
    background: url('../img/products/bg-carpathian-single-malt.png') no-repeat 39% center;
    background-image: image-set(url('../img/products/bg-carpathian-single-malt.webp') type('image/webp'),
            url('../img/products/bg-carpathian-single-malt.png') type('image/png'));
    background-repeat: no-repeat;
    background-position: 39% center;
    background-size: cover;
}

.section-product.section-product-highland-peak {
    background: url('../img/products/bg-highland-peak.png') no-repeat center center;
    background-image: image-set(url('../img/products/bg-highland-peak.webp') type('image/webp'),
            url('../img/products/bg-highland-peak.png') type('image/png'));
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
} */

/* ============================================
   .section-boxes - home page grid of cards
   ============================================ */

.section-boxes {
    color: var(--white);
}

.section-boxes .col-box {
    display: flex;
}

.section-boxes .box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    text-decoration: none;
    color: inherit;
    isolation: isolate;
}

.section-boxes .box .box {}

.section-boxes .box-video {
    aspect-ratio: 2 / 1;
    display: block;
}

@media (min-width: 575.98px) {
    .section-boxes .box-wide {
        aspect-ratio: 2 / 1;
        display: block;
    }
}

@media (max-width: 767.98px) {
    .section-boxes .box {
        /* aspect-ratio: 16 / 9; */
    }
}

.section-boxes .box-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.section-boxes .box-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.section-boxes .box-image-text .box-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    color: var(--white);
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.25) 55%,
            rgba(0, 0, 0, 0.55) 100%);
}

.section-boxes .box-text {
    color: var(--white);
    font-family: "Bahn", Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: clamp(16px, 1.3vw, 28px);
    line-height: 1.35;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

@media (min-width: 1200px) {
    .section-boxes .box-image-text .box-text {
        font-size: clamp(14px, 1.3vw, 28px);
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .section-boxes .box-image-text .box-text {
        font-size: clamp(16px, 1.3vw, 28px);
    }
}

.section-boxes .box-actions .btn {
    font-size: clamp(12px, 1.3vw, 28px);
    padding: 5px 12px;
}

.section-boxes .box-actions .btn:hover {
    background-color: var(--blue-primary);
    color: var(--yellow-primary);
}

.section-boxes .box-actions .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
}

.section-boxes .box-image-only .box-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.section-boxes .box-text-only .box-content {
    position: absolute;
    inset: 0;
    padding: 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: end;
    gap: 14px;
    z-index: 1;
}

@media (min-width: 575.98px) {
    .section-boxes .box-text-only .box-content {
        justify-content: space-between;
    }
}

.section-boxes .box-text-only .box-heading {
    margin: 0;
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
    font-weight: normal;
    font-size: clamp(15px, 1.3vw, 28px);
    line-height: 1.2;
    text-transform: none;
}

@media (min-width: 575.98px) {
    .section-boxes .box-text-blue:hover .box-text {
        color: var(--blue-primary);
    }
}

.section-boxes .box-text-yellow {
    background: var(--yellow-primary);
}

.section-boxes .box-text-yellow .box-heading {
    color: var(--blue-primary);
}

.section-boxes .box-text-blue:after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/bg-leaves.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 70% auto;
    opacity: 0.15;
}

.section-boxes .box-text-blue {
    background-color: var(--blue-primary);
    transition: all 0.3s ease;
}

.section-boxes .box-text-blue:hover {
    background-color: var(--yellow-primary);
}

.section-boxes .box-text-blue .box-heading {
    color: var(--white);
}

.section-boxes .box-video .box-play {
    position: absolute;
    width: 80px;
    height: 80px;
    inset: 50%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-primary);
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 100%;
    transition: all 0.3s ease;
}

.section-boxes .box-video:hover .box-play {
    background-color: var(--blue-primary);
    transform: translate(-50%, -50%) scale(1.2);
}

.section-boxes .box-video .box-play svg {
    width: clamp(56px, 6vw, 92px);
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
    transition: transform 0.3s ease;
}

.section-boxes .box-video:hover .box-play svg {
    transform: scale(1.08);
}

.btn-outline-blue-primary {
    background: transparent;
    border: 1px solid var(--blue-primary);
    color: var(--blue-primary);
    text-transform: uppercase;
    font-family: "Bahn Cond", 'Arial Narrow', Arial, sans-serif;
    font-weight: bold;
    font-size: 11px;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-outline-blue-primary:hover,
.btn-outline-blue-primary:focus {
    background: var(--blue-primary);
    color: var(--yellow-primary);
}

.form-control-border-blue-secondary {
    border: 1px solid var(--blue-secondary);
    background: var(--blue-primary);
    color: var(--white);
    font-size: 16px;
    font-family: "Bahn", Arial, Helvetica, sans-serif;
    font-weight: normal;
    line-height: 1.2;
    padding: 10px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: none;

    &:focus {
        border-color: var(--blue-secondary);
        background: var(--blue-primary);
        color: var(--white);
        font-size: 16px;
        font-family: "Bahn", Arial, Helvetica, sans-serif;
        font-weight: normal;
        line-height: 1.2;
        padding: 10px 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
        box-shadow: none;
    }

    &::placeholder {
        color: var(--blue-secondary);
        opacity: 0.5;
    }

    &:disabled {
        background: var(--blue-primary);
        color: var(--white);
        font-size: 16px;
        font-family: "Bahn", Arial, Helvetica, sans-serif;
        font-weight: normal;
        line-height: 1.2;
        padding: 10px 10px;
        border-radius: 5px;
        transition: all 0.3s ease;
        box-shadow: none;
    }
}

.section-no-content {
    background: url("../img/bg-no-content.png") no-repeat center center;
    background-image: image-set(url("../img/bg-no-content.webp") type("image/webp"),
            url("../img/bg-no-content.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}

.section-no-content:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 36, 54, 0.75);
    backdrop-filter: blur(5px);
}

.section-no-content .wrap {
    background: var(--blue-primary);
    border-radius: 20px;
    padding: 40px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    border: 2px solid var(--yellow-secondary);
    position: relative;
    z-index: 1;
}

.section-no-content .wrap .logo {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-no-content .wrap .logo img {
    width: 100%;
    height: auto;
}

.section-no-content .wrap .text {
    text-align: center;
}

.section-no-content .wrap .text h2 {
    font-weight: bold;
}

/* =============================================================================
   USER DASHBOARD - stiluri temporare !!! de înlocuit !!!
   ============================================================================= */

.section-dashboard {
    padding: 60px 0;
    min-height: 60vh;
}

/* Banner avertizare email neverificat */
.section-dashboard .alert-warning {
    background-color: rgba(255, 193, 7, 0.15);
    border: 1px solid var(--yellow-secondary);
    color: var(--yellow-primary);
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
}

/* Stat boxes - XP, nivel, degustări, insigne */
.dashboard-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
}

.dashboard-stat-value {
    font-size: 2.2rem;
    font-weight: 600;
    color: #f5c518;
    line-height: 1;
    margin-bottom: 6px;
}

.dashboard-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA cards */
.dashboard-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
}

.dashboard-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.dashboard-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

/* =============================================================================
   AUTH PAGES (login, register, forgot, reset) - stiluri temporare
   ============================================================================= */

.section-auth {}



.auth-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;

    background: url("../img/bg-no-content.png") no-repeat center center;
    background-image: image-set(url("../img/bg-no-content.webp") type("image/webp"),
            url("../img/bg-no-content.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
}

.auth-body:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 36, 54, 0.75);
    backdrop-filter: blur(5px);
}

.auth-body .auth-container {

    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 500px;
    background: var(--blue-primary);
    border: 2px solid var(--yellow-secondary);
    border-radius: 16px;
    padding: 30px 20px 20px;
}

@media (min-width: 768px) {
    .auth-body .auth-container {

        padding: 40px 36px;
    }
}

.auth-container .logo {
    max-width: 160px;
    margin: 0 auto 28px;
}




.section-community-hero {
    background: url("../img/bg-community.png") no-repeat center center;
    background-image: image-set(url("../img/bg-community.webp") type("image/webp"),
            url("../img/bg-community.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-community-slider {
    background: url("../img/bg-community-slider.png") no-repeat center center;
    background-image: image-set(url("../img/bg-community-slider.webp") type("image/webp"),
            url("../img/bg-community-slider.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.section-community-slider .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.section-community-slider .item {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.section-community-slider .item .title {
    font-size: 32px;
    margin-bottom: 20px;
}

@media (min-width: 1400px) {
    .section-community-slider .item .title {
        font-size: 52px;
    }
}

.section-community-slider .item .title span {
    display: inline-block;
    padding: 0 10px 10px;
    border-bottom: 5px solid var(--yellow-secondary);
}

.section-community-slider .item .actions {
    margin-top: 20px;
}

.section-community-slider .swiper-button {
    background: var(--white);
}

.section-community-slider .swiper-button::after {
    display: none !important;
}



.section-community-slider .swiper-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.section-community-slider .swiper-buttons .swiper-button {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: static !important;
}


@media(min-width: 768px) {
    .section-community-slider .swiper-buttons .swiper-button {
        position: absolute !important;
        top: 50%;
        transform: translateY(-50%);
    }

    .section-community-slider .swiper-buttons .swiper-button.swiper-button-prev {
        left: 0;
    }

    .section-community-slider .swiper-buttons .swiper-button.swiper-button-next {
        right: 0;
    }

    .section-community-slider .swiper .item {
        padding: 0 50px;
    }
}

.section-community-slider .swiper-buttons .swiper-button:hover {
    background: var(--yellow-primary);
}



@media (min-width: 1400px) {

    .section-community-slider .swiper .item {
        padding: 0 100px;
    }

    .section-community-slider .swiper-buttons .swiper-button {
        width: 60px;
        height: 60px;
    }
}

.section-community-slider .swiper-buttons .swiper-button::after {
    display: none !important;
}

.section-community-slider .swiper-buttons .swiper-button img {
    display: block;
    width: 30%;
    user-select: none;
}

.section-community-details .detail .col-detail {
    border-top: 2px solid rgba(255, 255, 255, 0.25);
}


@media (min-width: 767.98px) {
    .section-community-details .detail .col-detail {
        border-top: none;
    }

    .section-community-details .detail .col-detail:not(:first-child) {
        border-left: 2px solid rgba(255, 255, 255, 0.25);
    }

    .section-community-details .detail {
        border-top: 2px solid rgba(255, 255, 255, 0.25);
    }
}

.section-community-details .detail .col-detail {
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--blue-primary);

    background: url("../img/bg-community-detail-blue.png") no-repeat center center;
    background-image: image-set(url("../img/bg-community-detail-blue.webp") type("image/webp"),
            url("../img/bg-community-detail-blue.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;


    transition: all 0.3s ease;
    position: relative;
}


.section-community-details .col-detail:hover {
    background-color: var(--yellow-primary);
    background: url("../img/bg-community-detail-yellow.png") no-repeat center center;
    background-image: image-set(url("../img/bg-community-detail-yellow.webp") type("image/webp"),
            url("../img/bg-community-detail-yellow.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--blue-primary);
}

.section-community-details .detail .item {
    padding-right: 20%;
    padding-left: calc(var(--bs-gutter-x) * 1.5);
    padding-top: 5%;
    padding-bottom: 5%;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 800px;
}

@media (min-width: 992px) {
    .section-community-details .detail .item {
        padding-top: 5%;
        padding-bottom: 5%;
    }
}

@media (min-width: 1600px) {
    .section-community-details .detail .item {
        padding-top: 5%;
        padding-bottom: 5%;
    }
}

.section-community-details .col-detail:first-child .item {
    margin-left: auto;
}


.section-community-details .title {
    font-family: 'Bahn Bold SemiCond', 'Arial Narrow', Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .section-community-details .title {
        font-size: 32px;
    }
}

@media (min-width: 1600px) {
    .section-community-details .title {
        font-size: 52px;
    }
}

.section-community-details .detail ul {
    padding: 0;
    margin: 20px 0;
    list-style: none;
}

.section-community-details .detail ul li {
    font-family: 'Bahn Bold SemiCond', 'Arial Narrow', Arial, sans-serif;
    text-transform: uppercase;
    margin: 7px 0;
    font-size: 18px;
}

@media (min-width: 992px) {
    .section-community-details .detail ul li {
        margin: 10px 0;
    }
}

.section-community-details .detail ul li:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--yellow-secondary);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.section-community-details .detail .col-detail:hover ul li:before {
    background-color: var(--blue-primary);
}

.section-community-details .detail .count {
    position: absolute;
    top: 5%;
    right: 5%;
    font-family: 'Bahn Bold SemiCond', 'Arial Narrow', Arial, sans-serif;
    font-size: 10vw;
    font-weight: bold;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
}

.section-perspective {
    position: relative;
}

.section-perspective .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    padding-top: 25%;
    height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: var(--blue-primary);
    border-radius: 100%;
}

@media (min-width: 768px) {
    .section-perspective .logo {
        width: 12%;
        padding-top: 12%;
    }
}

.section-perspective .logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .section-cta-shop {
        background: url("../img/home/cta-shop.png") no-repeat center center;
        background-image: image-set(url("../img/home/cta-shop.webp") type("image/webp"),
                url("../img/home/cta-shop.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: left center;
        background-size: cover;
        position: relative;
    }

    .section-cta-shop::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 70%;
        height: 100%;
        background: linear-gradient(90deg,
                rgba(0, 0, 0, 0) 0%,
                var(--blue-primary) 65%,
                var(--blue-primary) 100%);

        z-index: 1;
        pointer-events: none;
    }

    .section-cta-shop .inner {
        position: relative;
        z-index: 2;
    }
}

@media (min-width: 1200px) {
    .section-cta-shop {
        background-size: 80% auto;
    }
}

@media (min-width: 1920px) {
    .section-cta-shop {
        background-size: cover;
    }
}

.section-cta-shop .logo-link {
    max-width: 300px;
}

.section-cta-shop .logo-link img {
    display: block;
    max-width: 100%;
}


.section-cta-shop .text {
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-cta-shop {
        padding-top: 0;
    }

    .section-cta-shop .text {
        padding-top: 40px;

        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

.section-horeca {
    background: url("../img/bg-horeca.png") no-repeat center center;
    background-image: image-set(url("../img/bg-horeca.webp") type("image/webp"),
            url("../img/bg-horeca.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 5vw 0;
}

.section-horeca .col-item {
    text-align: center;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-horeca .col-item .item {
    background-color: var(--blue-primary);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    max-width: 500px;
}

@media (min-width: 992px) {
    .section-horeca .col-item .item {
        padding: 30px;
    }
}

.section-horeca h3 {
    font-family: 'Bahn Bold SemiCond';
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-horeca h3 span {
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 3px solid var(--yellow-secondary);
}

@media (min-width: 1200px) {
    .section-horeca h2 {
        font-size: 52px;
    }

    .section-horeca h3 {
        font-size: 32px;
    }
}

.section-horeca .badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.section-horeca .badge {
    padding: 5px;
    border-radius: 5px;
    font-family: 'Bahn Bold SemiCond';
    font-size: 14px;
    text-transform: uppercase;
    background-color: var(--yellow-secondary);
    color: var(--blue-primary);
}