﻿/*
  xs: 0,
  sm: 576px,    -> 540
  md: 768px,    -> 720
  lg: 992px,    -> 960
  xl: 1200px,   -> 1140
  xxl: 1400px   -> 1320
*/

/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
36px = 2.25rem
40px = 2.5rem
44px = 2.75rem
50px = 3.125rem
*/

/*
    https://www.color-hex.com/color/xxxxxx

    convert hex to filter
    https://codepen.io/sosuke/pen/Pjoqqp
*/

@charset "UTF-8";
@import url('variables.css');

body {
    /*    color: var(--color-text);
    font-family: var(--font-text);
    position: relative;*/
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: var(--font-text);
    font-optical-sizing: auto;
    line-height: 1.5;
    background-color: #fff;
    color: var(--color-text);
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

html.no-scroll,
html.no-scroll body {
    overflow-y: hidden;
}

body {
    overflow-x: hidden;
}

.loading-overlay {
    display: none;
    background: #c0c0c0 url('/images/loader-gray.gif') center center no-repeat;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.75;
    z-index: 99999999;
    transition: all .5s;
    overflow-y: scroll; /* see html height */
}

.block-ui {
    display: none;
    background: transparent;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    overflow-y: scroll; /* see html height */
}

.top-pattern-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.bottom-pattern-image {
    display: none; /* was removed */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 992px) {
    .top-pattern-image,
    .bottom-pattern-image {
        height: 100vh;
    }
}

a {
    /*color: var(--accent-color);*/
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-family: var(--font-heading);
}

/* visually-hidden */
.non-visible {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

img, picture, video, canvas, svg {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

main {
    position: relative;
}

.fs-normal {
    font-size: 1rem;
}

.fs-larger {
    font-size: 1.2rem;
}

.fs-smaller {
    font-size: 0.85rem;
}

.fs-smallest {
    font-size: 0.75rem;
}

.pb-none {
    padding-bottom: 0;
}

.pb-smaller {
    padding-bottom: 1.25rem;
}

.pb-normal {
    padding-bottom: 2rem;
}

.pb-larger {
    padding-bottom: 4rem;
}

.mb-none {
    margin-bottom: 0;
}

.mb-smaller {
    margin-bottom: 1.25rem;
}

.mb-normal {
    margin-bottom: 2rem;
}

.mb-larger {
    margin-bottom: 4rem;
}

/* see hack for flatpickr */
.hidden:not(.flatpickr-day) {
    display: none !important;
}

.container.container-narrow {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* lg breakpoint (Bootstrap: 960px) */
@media (min-width: 992px) {
    .container.container-narrow {
        max-width: var(--w-container-narrow);
    }
}

/* xl breakpoint (Bootstrap: 1140px) */
@media (min-width: 1200px) {
    .container.container-narrow {
        max-width: var(--w-container-narrow);
    }
}

/* xxl breakpoint (Bootstrap: 1320px) */
@media (min-width: 1400px) {
    .container.container-narrow {
        max-width: var(--w-container-narrow);
    }
}

/* pointer device */
/* desktop */
@media (hover: hover) and (pointer: fine) {
    .active-desktop {
        display: initial;
    }

    .active-mobile {
        display: none;
    }
}

/* mobile */
@media (hover: none) and (pointer: coarse) {
    .active-desktop {
        display: none;
    }

    .active-mobile {
        display: initial;
    }
}

/* ============================
header
============================ */
.header {
    color: var(--color-text);
    background-color: transparent;
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 1030;
}

    .header .header-container {
        background: var(--bg-color-header);
        border-radius: 100px;
        padding: 10px 20px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    .header .logo {
        line-height: 1;
    }

        .header .logo img {
            max-height: 36px;
            margin-right: 10px;
        }

@media screen and (max-width: 768px) {
    .header .logo img {
        max-width: 130px;
    }

    /* changed to icon */
    /*    .header-cta {
        font-size: 10px;
    }*/
}

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

        .header .header-container {
            margin-left: 10px;
            margin-right: 10px;
            padding: 10px 5px 10px 15px;
        }

        .header .logo {
            order: 1;
        }

        .header .navmenu {
            order: 3;
        }
}

/* ============================
menu
============================ */
/* desktop navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
        margin-left: auto;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu ul.submenu li:has(a:hover),
        .navmenu ul.submenu li:has(a:focus) {
            background-color: var(--bg-color-footer);
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 5px 15px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            /*font-weight: 600;*/
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: var(--nav-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 100%;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            /*padding: 10px 0;*/
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 5px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
                border-radius: 5px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }

        /* tab open */
        /* Enable dropdown opening with keyboard focus */
        .navmenu .dropdown:focus-within > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown:focus-within > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }

    .nav-item {
        /*display: block;*/
    }

    .nav-item-title {
    }
}


/* mobile navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            /*border: 1px solid color-mix(in srgb, var(--color-text), transparent 90%);*/
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                /* same as scroll to top */
                --bg-color-base: var(--bg-color-scroll-top);
                --bg-color-hover: color-mix(in srgb, var(--bg-color-scroll-top) 85%, white);
                --bg-color-active: color-mix(in srgb, var(--bg-color-scroll-top) 90%, black);
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: var(--bg-color-base);
                color: var(--color-scroll-top);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--bg-color-hover);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--bg-color-active);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }

    .navmenu > ul > li > a {
        position: relative;
    }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 0;
            height: 2px;
            background-color: var(--nav-dropdown-hover-color);
            opacity: 0;
            transition: 0.3s;
            width: 10%;
        }

        .navmenu > ul > li > a.active:before,
        .navmenu > ul > li.active > a:before {
            opacity: 1;
        }
}

/* ============================
heading
============================ */
.r-heading b {
    font-weight: 900;
}

/* ============================
buttons
============================ */
.btn.btn-primary {
    --bg-color-base: var(--bg-color-btn-primary);
    --bg-color-hover: color-mix(in srgb, var(--bg-color-btn-primary) 85%, white);
    --bg-color-active: color-mix(in srgb, var(--bg-color-btn-primary) 90%, black);
    background-color: var(--bg-color-base);
    border-color: var(--bg-color-base);
    color: var(--color-btn-primary);
    border-radius: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .btn.btn-primary:hover,
    .btn.btn-primary:focus {
        background-color: var(--bg-color-hover);
        border-color: var(--bg-color-hover);
    }

    .btn.btn-primary:active,
    .btn.btn-primary.active {
        background-color: var(--bg-color-active);
        border-color: var(--bg-color-active);
    }

.btn.btn-secondary {
    --bg-color-base: var(--bg-color-btn-secondary);
    --bg-color-hover: color-mix(in srgb, var(--bg-color-btn-secondary) 85%, white);
    --bg-color-active: color-mix(in srgb, var(--bg-color-btn-secondary) 90%, black);
    background-color: var(--bg-color-base);
    border-color: var(--bg-color-base);
    color: var(--color-btn-secondary);
    border-radius: 100px;
    padding-left: 1rem;
    padding-right: 1rem;
}

    .btn.btn-secondary:hover,
    .btn.btn-secondary:focus {
        background-color: var(--bg-color-hover);
        border-color: var(--bg-color-hover);
    }

    .btn.btn-secondary:active,
    .btn.btn-secondary.active {
        background-color: var(--bg-color-active);
        border-color: var(--bg-color-active);
    }

.btn.btn-link {
    color: var(--color-text);
    padding-left: 1rem;
    padding-right: 1rem;
    text-decoration: none;
    position: relative;
}

    .btn.btn-link:before {
        content: "";
        position: absolute;
        left: 1rem;
        bottom: 0;
        height: 1px;
        width: calc(100% - 2rem);
        background-color: var(--color-text);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
        opacity: 1;
    }

    .btn.btn-link:hover:before,
    .btn.btn-link:hover:before,
    .btn.btn-link:hover:before,
    .btn.btn-link.hover:before {
        transform: scaleX(1);
    }

a.raw {
    color: var(--color-text);
}

a.document {
    color: var(--color-text);
}
/* ============================
footer
============================ */
.footer {
    color: var(--color-heading);
    background-color: var(--bg-color-footer);
    position: relative;
    font-size: 18px;
}

    .footer .footer-top {
        padding-top: 50px;
        font-size: 14px;
    }

    .footer h4 {
        color: var(--color-heading);
        font-family: var(--font-heading);
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .footer a {
        color: var(--color-heading);
    }

    .footer ul.footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        margin-bottom: 30px;
    }

        .footer ul.footer-links li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

        .footer ul.footer-links a {
            /*font-size: 14px;*/
            display: inline-block;
            line-height: 1;
            position: relative;
            padding-bottom: 3px;
        }

            .footer ul.footer-links a:before {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                height: 1px;
                width: 100%;
                background-color: var(--color-heading);
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.3s ease;
                opacity: 1;
            }

            .footer ul.footer-links a:hover:before {
                transform: scaleX(1);
            }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--color-heading);
        color: var(--color-heading);
        margin-right: 10px;
        transition: 0.3s;
        background-color: transparent;
    }

        .footer .social-links a:hover {
            background-color: var(--color-heading);
            color: var(--color-background, #fff);
            border-color: var(--color-heading);
        }

    .footer .copyright {
        font-size: 14px;
    }

    .footer .credits {
        font-size: 14px;
    }

/* ============================
scroll top button
============================ */
.scroll-top {
    --bg-color-base: var(--bg-color-scroll-top);
    --bg-color-hover: color-mix(in srgb, var(--bg-color-scroll-top) 85%, white);
    --bg-color-active: color-mix(in srgb, var(--bg-color-scroll-top) 90%, black);
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--bg-color-base);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--color-scroll-top);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: var(--bg-color-hover);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
        bottom: 15px;
    }

/* disable aos animation delay on mobile devices */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* ============================
banner
============================ */
.banner {
    /*padding: 120px 0 100px;*/
    position: relative;
    overflow: hidden;
}

    .banner .banner-content h2 {
        font-size: 3.5rem;
        font-weight: var(--font-heading-weight);
        line-height: 1;
        margin-bottom: 2rem;
        color: var(--color-heading);
    }

@media (max-width: 768px) {
    .banner .banner-content h2 {
        font-size: 2.5rem;
    }
}

.banner .banner-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.banner .banner-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: center;
}

@media (max-width: 576px) {
    .banner .banner-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.banner .banner-image {
    position: relative;
}

@media (max-width: 992px) {
    .banner {
        /*padding: 80px 0 60px;*/
    }

        .banner .banner-content {
            zoom: 0.7;
        }

        .banner::before {
            display: none;
        }

        .banner .row {
            /*flex-direction: column-reverse;*/
        }

        .banner .col-lg-6:first-child {
            margin-top: 3rem;
        }
}

/* ============================
delimiter
============================ */
.line span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-heading);
}

/* ============================
html (aka rich text editor)
============================ */
.r-html p:last-child {
    margin-bottom: 0;
}

.r-html a {
    color: var(--color-text);
    text-decoration: underline;
}

/* ============================
image with content
============================ */
.r-image-with-content .colored-bg {
    background-color: var(--iwc-bg-color);
    color: var(--iwc-color);
}

    .r-image-with-content .colored-bg .r-heading * {
        color: var(--iwc-color);
    }

.r-image-with-content .content :is(h1, h2, h3, h4, h5, h6) * {
    font-size: 105%;
}

.r-image-with-content .content :is(p) * {
    font-size: 95%;
}

.r-image-with-content .content {
    max-width: var(--w-container-half);
}

.r-image-with-content .img-cover {
    width: 100%;
    height: 100%;
}

    .r-image-with-content .img-cover picture,
    .r-image-with-content .img-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


/* ============================
jumbotron
============================ */
.r-jumbotron .bg-wrapper {
    position: relative;
    overflow: hidden;
}

    .r-jumbotron .bg-wrapper img.bg-cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

.r-jumbotron .blur-box {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 25px;
    overflow: hidden;
}

/* ugly */
/*.blur-box::before {
    --color-base: var(--color-primary);
    --color-lighter: color-mix(in srgb, var(--color-base) 85%, white);
    --color-darker: color-mix(in srgb, var(--color-base) 90%, black);
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 3rem;
    background: linear-gradient(to bottom, var(--color-lighter), var(--color-darker));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}*/

.r-jumbotron .content.text-white .r-heading * {
    color: #fff;
}

/* ============================
video slider
============================ */
.r-video-slider .swiper-anchor {
    position: relative;
}

.r-video-slider .swiper-full {
    position: absolute;
    top: 0;
    overflow: hidden;
}

.r-video-slider .swiper-placeholder {
    pointer-events: none;
}

.r-video-slider .video-slider {
    width: 100%;
    overflow: visible !important;
}

    .r-video-slider .video-slider .swiper-wrapper {
        overflow: visible !important;
        align-items: flex-start;
        padding-top: 4px; /* see card hover translation */
    }

    /* desktop: slide width determined by inner card */
    .r-video-slider .video-slider .swiper-slide {
        width: auto !important;
        flex-shrink: 0;
    }

/* mobile: one slide per viewport — slide stretches to swiper width, card keeps its fixed size and is centered inside */
@media (max-width: 575px) {
    .r-video-slider .video-slider .swiper-slide {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }
}

/* video card – 9:16 portrait */
.r-video-slider .video-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #111;
    position: relative;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.r-video-slider.orientation-portrait .video-card {
    width: 220px;
    height: 390px;
}

.r-video-slider .video-card:hover {
    transform: translateY(-4px);
}

.r-video-slider.orientation-landscape .video-card {
    width: 390px;
    height: 220px;
}

@media (max-width: 768px) {
    .r-video-slider.orientation-portrait .video-card {
        width: 175px;
        height: 311px;
    }

    .r-video-slider.orientation-landscape .video-card {
        width: 311px;
        height: 157px;
    }
}

.r-video-slider .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* gradient overlay */
.r-video-slider .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    color: #fff;
    opacity: 1;
    transition: opacity .3s ease;
}

.r-video-slider .video-title {
    font-size: .85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: .25rem;
}

.r-video-slider .video-text {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
}

/* play button */
.r-video-slider .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease, transform .15s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

    .r-video-slider .play-btn .bi {
        font-size: 1.5rem;
        color: var(--color-primary);
        line-height: 1;
    }

.r-video-slider .video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.05);
}

/* pause button */
.r-video-slider .pause-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 4;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

    .r-video-slider .pause-btn .bi {
        font-size: 1.1rem;
        color: var(--color-primary);
        line-height: 1;
    }

/* navigation arrows */
.r-video-slider .swiper-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.r-video-slider .swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    padding: 0;
}

    .r-video-slider .swiper-nav-btn .bi {
        font-size: 1.1rem;
        color: var(--color-primary);
        transition: color .15s ease;
        line-height: 1;
    }

    .r-video-slider .swiper-nav-btn:hover {
        background: var(--color-primary);
    }

        .r-video-slider .swiper-nav-btn:hover .bi {
            color: #fff;
        }

    .r-video-slider .swiper-nav-btn.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

/* ============================
content slider
============================ */
.r-content-slider .swiper-anchor {
    position: relative;
}

.r-content-slider .swiper-full {
    position: absolute;
    top: 0;
    overflow: hidden;
}

.r-content-slider .swiper-placeholder {
    pointer-events: none;
}

.r-content-slider .content-slider {
    width: 100%;
    overflow: visible !important;
}

    .r-content-slider .content-slider .swiper-wrapper {
        overflow: visible !important;
        align-items: stretch; /*flex-start;*/
        padding-top: 4px; /* see card hover translation */
    }

    /* desktop: slide width determined by inner card */
    .r-content-slider .content-slider .swiper-slide {
        width: auto !important;
        flex-shrink: 0;
        display: flex;
        align-items: stretch;
        height: auto;
        padding-bottom: 12px;
    }

/* mobile: one slide fills the full swiper width */
@media (max-width: 575px) {
    .r-content-slider .content-slider .swiper-slide {
        width: 100% !important;
    }
}

/* navigation arrows */
.r-content-slider .swiper-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.r-content-slider .swiper-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    padding: 0;
}

    .r-content-slider .swiper-nav-btn .bi {
        font-size: 1.1rem;
        color: var(--color-primary);
        transition: color .15s ease;
        line-height: 1;
    }

    .r-content-slider .swiper-nav-btn:hover {
        background: var(--color-primary);
    }

        .r-content-slider .swiper-nav-btn:hover .bi {
            color: #fff;
        }

    .r-content-slider .swiper-nav-btn.swiper-button-disabled {
        opacity: 0.35;
        cursor: default;
        pointer-events: none;
    }

/* conten cards slider specific */
.slide-content-card {
    width: 320px;
    height: 100%;
    /*border-radius: 1rem;*/
    overflow: hidden;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .slide-content-card:hover {
        transform: translateY(-4px);
    }

    .slide-content-card .content-card-image {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 1rem;
        flex-shrink: 0;
        background: #e8e4dc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #aaa;
        overflow: hidden;
    }

        .slide-content-card .content-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slide-content-card .content-card-image .btn {
            position: absolute;
            bottom: 1rem;
            /*width: calc(100% - 2rem);*/ /*reduced width*/
            transition: 300ms ease-in-out;
            opacity: 0;
        }

    .slide-content-card:hover .content-card-image .btn {
        opacity: 1;
    }

    .slide-content-card .content-card-body {
        flex: 1; /* flex: 1 -> stretch */
        padding: 1rem 1.1rem 1.25rem;
        display: flex;
        flex-direction: column;
    }

    .slide-content-card .content-card-title {
        color: var(--color-heading);
        font-family: var(--font-text);
        font-size: 14px;
        text-align: center;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .slide-content-card .content-card-text {
        color: var(--color-text);
        font-family: var(--font-text);
        font-size: 14px;
        text-align: center;
        margin-bottom: 1rem;
        flex: 1;
    }

    .slide-content-card .content-card-link {
        width: 100%;
        text-align: center;
    }

        .slide-content-card .content-card-link .btn {
            width: calc(100% - 2rem);
        }

@media (max-width: 575px) {
    .slide-content-card {
        width: 100%;
    }
}

/* product slider specific */
.product-card {
    width: 320px;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* krajša, intenzivnejša senca */
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* Slika full-bleed */
.product-card__image-wrap {
    width: 100%;
    min-height: 426px; /* according to design 3:4 -> (product-card)320:426 */
    overflow: hidden;
}

.product-card__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Telo */
.product-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 auto;
    color: var(--color-text);
}

.product-card__body-top {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card__body-bottom {
    padding: 0 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Header: title + dots */
.product-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-card__brand {
    color: var(--color-heading);
}

    .product-card__brand .product-brand img {
        height: 25px;
    }

.product-card__title {
    font-weight: bold;
    color: var(--color-heading);
    margin-top: 2px;
    font-size: 20px;
}

/* Zelene pike */
.product-card__dots {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d1d5db;
}

.dot--active {
    background: #16a34a;
}

/* Tekst */
.product-card__summary {
}

/* Rating – Bootstrap Icons */
.product-card__rating {
    display: flex;
    gap: 2px;
    color: silver;
}

/* Cena */
.product-card .product-price {
    color: var(--color-heading-product);
    font-weight: bold;
    font-size: 20px;
}

/* Gumb čez celo širino */
.product-card__btn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    background: #16a34a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

    .product-card__btn:hover {
        background: #15803d;
    }


@media (max-width: 575px) {
    .product-card {
        width: 100%;
    }
}

.product-labels {
    display: flex;
    flex-wrap: wrap;
}

    .product-labels .item {
        text-align: center;
    }

        .product-labels .item .title {
            font-size: 12px;
        }

/* ============================
icons with text
============================ */
.r-icons-with-text .card-custom {
    --border-color: color-mix(in srgb, var(--iwt-bg-color) 90%, black);
    width: 100%;
    max-width: 260px;
    font-family: var(--iwt-font-family);
    font-size: 22px;
    font-weight: 700;
    line-height: 31px;
    letter-spacing: -1px;
    background-color: var(--iwt-bg-color);
    border-color: var(--border-color);
    border-radius: 20px;
}

@media (max-width: 575px) {
    .r-icons-with-text .card-custom {
        max-width: 100%;
    }
}

.r-icons-with-text .card-custom .svg-icon-cards {
    --ico-top-color: var(--iwt-color-ico-top);
    --ico-bottom-color: var(--iwt-color-ico-bottom);
    max-width: 50px;
    height: 50px;
    display: inline-block;
}

/* ============================
jumbotron with lines
============================ */
/*.r-jumbotron-with-lines .lines {
    position: relative;
    background-image: linear-gradient(to right, red, red);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 8px 0;
}

.r-jumbotron-with-lines .lines span {
    background: white;
    max-width: 80%;
    display: inline-block;
    padding-right: 10px;
    position: relative;
}*/

.r-jumbotron-with-lines {
    background-color: var(--color-primary-light);
}

    .r-jumbotron-with-lines .lines {
        position: relative;
        line-height: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        background-image: linear-gradient(to right, var(--color-heading), var(--color-heading));
        background-size: 100% 1px;
        background-repeat: no-repeat;
        background-position: left calc(12px + 8px);
    }

        .r-jumbotron-with-lines .lines span {
            color: var(--color-heading);
            background: var(--color-primary-light);
            max-width: 80%;
            display: inline-block;
            padding-right: 10px;
            font-size: 22px;
        }

/* ============================
collapsibles (aka accordion)
============================ */
.accordion-button {
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border: none;
    background: transparent;
    /*transition: background-color .2s ease;*/
    font-family: var(--font-text);
    font-size: 24px;
    color: var(--color-text);
    display: flex;
    align-items: start;
}

    .accordion-button h2 {
        font-size: 20px;
        font-weight: bold;
    }

    .accordion-button:not(.collapsed) {
        background: transparent;
        color: var(--color-text);
    }

    .accordion-button:focus {
        box-shadow: none !important;
    }

    /* disable default arrows */
    .accordion-button::after {
        display: none !important;
    }

    .accordion-button i {
        transition: transform .25s ease;
    }

    .accordion-button:not(.collapsed) i {
        transform: rotate(180deg);
    }

.accordion-item {
    border: none;
    border-bottom: 1px solid var(--color-heading);
    border-radius: 0 !important;
}

.accordion-body {
    /*border-top: 2px solid #eee;*/
    color: var(--color-text);
}

.accordion-collapse {
    transition: height .25s ease;
}

/* ============================
testimonials - page
============================ */
.r-testimonials .testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: solid 1px #f1f1f1;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    box-sizing: border-box;
    transition: margin 0.3s ease;
}

.r-testimonials .testimonial-inner {
    transition: padding 0.3s ease;
}

.r-testimonials .text {
    padding-bottom: 1rem;
}

.r-testimonials .title {
    font-weight: bold;
    padding-bottom: 0.375rem;
}

.r-testimonials .stars i {
    color: silver;
    margin-right: 0.2rem;
}

/* desktop 3 columns */
@media (min-width: 901px) {
    .r-testimonials .testimonial-item {
        width: calc(33.333% - 20px);
    }
}

/* tablet: 2 columns */
@media (min-width: 600px) and (max-width: 900px) {
    .r-testimonials .testimonial-item {
        width: calc(50% - 20px);
    }
}

/* mobile: 1 column */
@media (max-width: 599px) {
    .testimonial-item {
        width: 100%;
    }
}

/* fade */
.r-testimonials .masonry-grid {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    transition: mask-image 0.3s ease;
}

    .r-testimonials .masonry-grid.show-all {
        -webkit-mask-image: none;
        mask-image: none;
    }

.r-testimonials .wrapper {
    position: relative;
}

.r-testimonials .masonry-grid {
    position: relative;
}

.r-testimonials .show-more-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.r-testimonials .shifted {
    margin-top: 40px !important;
}

/* ============================
form
============================ */
.r-form {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.10);
}

.form-check .form-check-input {
    padding: 0;
    margin-left: 0;
    margin-right: 0.5rem;
}

/* flatpickr datetime */
.flatpickr-input {
    cursor: pointer;
}

    .flatpickr-input + input {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='1em' viewBox='0 0 448 512'%3E%3Cpath d='M152 24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H64C28.7 64 0 92.7 0 128v16 48V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V192 144 128c0-35.3-28.7-64-64-64H344V24c0-13.3-10.7-24-24-24s-24 10.7-24 24V64H152V24zM48 192H400V448c0 8.8-7.2 16-16 16H64c-8.8 0-16-7.2-16-16V192z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right calc(0.375em + 0.1875rem) center;
        background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }

.r-form .err-text {
    color: red;
}
/* flatpickr datetime */

/* ============================
expand
============================ */
.expander-wrapper .card-item {
    background: var(--color-theme-bg-light);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .expander-wrapper .card-item.click {
        cursor: pointer;
    }

    .expander-wrapper .card-item .title,
    .expander-wrapper .expanded-card .title {
        font-size: 25px;
        font-weight: bold;
    }

    .expander-wrapper .card-item .text,
    .expander-wrapper .expanded-card .text {
        font-size: 15px;
    }

    .expander-wrapper .card-item .hidden-content {
        display: none;
    }

.expander-wrapper .expanded-card .hidden-content {
    display: block;
}

.expander-wrapper .images-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

    .expander-wrapper .images-wrapper img {
        max-height: 140px;
    }

.expander-wrapper .expanded-card {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 10;
    background: var(--color-theme-bg-light);
    border-radius: 10px;
    box-shadow: none;
    padding: 1rem;
    overflow: hidden;
    transition: top .25s ease, left .25s ease, width .25s ease, height .25s ease;
}

    .expander-wrapper .expanded-card .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 26px;
        cursor: pointer;
    }

    .expander-wrapper .expanded-card.d-none {
        display: none !important;
    }

/* ============================
tabs
============================ */
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
}

.tab-btn {
    position: relative;
    padding: 5px 50px;
    cursor: pointer;
    user-select: none;
    color: var(--color-theme-text-light);
    font-size: 20px;
}

    .tab-btn.active {
        font-weight: bold;
        color: var(--color-text);
    }

    .tab-btn::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0px;
        height: 1px;
        background: var(--color-text);
    }

    .tab-btn.active::after {
        bottom: -2px;
        height: 4px;
        border-radius: 100px;
    }

.tabs-content .tab-segment {
    display: none;
}

    .tabs-content .tab-segment.active {
        display: block;
    }


/* ============================
shop product detail
============================ */
.product-main-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    /*transition: opacity .9s ease;*/
}

.shop-product-detail .thumb-image {
    width: 100%;
    /* height: 80px;*/
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: .7;
    transition: opacity .2s;
}

    .shop-product-detail .thumb-image:hover,
    .shop-product-detail .thumb-image.active {
        opacity: 1;
    }

.shop-product-detail .swiper-button-next,
.shop-product-detail .swiper-button-prev {
    color: #000;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .shop-product-detail .swiper-button-next:after,
    .shop-product-detail .swiper-button-prev:after {
        font-size: 16px;
        font-weight: bold;
    }

/* Center thumbnails if fewer than 5 */
/*.shop-product-detail .swiper-wrapper {
    justify-content: center;
}*/

/* disable elements if no-shop */
.noshop {
    /*display: none;*/
}

.product-tag {
    background: var(--bg-color-btn-primary);
    color: var(--color-btn-primary);
    border-radius: 1000px;
    padding: 5px 20px;
}

.consumer-reviews .stars i {
    color: var(--color-primary);
}

.product-title {
    font-size: 35px;
    font-weight: 700;
    color: var( --color-heading-product);
}

.product-price-box {
    background: var(--color-theme-bg-light);
    border: 1px solid color-mix(in srgb, var(--color-primary) 50%, transparent);
    border-radius: 20px;
}

.product-price {
    font-size: 30px;
}

.product-quantity-box {
    padding: 1rem;
    border-radius: 1rem;
    background: var(--pqb-bg-color);
}

    .product-quantity-box i {
        color: #fff;
        font-size: 20px;
    }

    .product-quantity-box input {
        border: 0;
        outline: 0;
        width: 50px;
        text-align: center;
        border-radius: 5px;
        font-size: 20px;
    }

.product-delivery-note {
    color: var(--color-theme-text-light);
}

    .product-delivery-note a {
        color: var(--color-theme-text-light);
        text-decoration: underline;
    }

/* hack */

.shop-product-detail .pb {
    padding-bottom: 3rem;
}

.shop-product-detail .mb {
    margin-bottom: 3rem;
}

.product-links-to-stores {
    display: table;
}

    .product-links-to-stores .tr {
        display: table-row;
    }

        .product-links-to-stores .tr .td {
            display: table-cell;
            vertical-align: middle;
        }

@media (min-width: 992px) {
    .product-links-to-stores.two-cols {
        display: block;
    }

        .product-links-to-stores.two-cols .tr {
            display: inline-block;
            width: 48%;
            vertical-align: top;
            margin-bottom: 12px;
        }
}

/* TABLE */
.r-table {
    overflow-x: auto;
}

    .r-table .table-wrapper {
        display: block;
        width: fit-content;
    }

    .r-table table th,
    .r-table table td {
        padding: 10px 15px;
    }

.r-table--style-styled .table-wrapper {
}

.r-table--style-styled table {
    border-collapse: collapse;
    overflow: hidden;
    margin: 0;
}

    /*    .r-table--style-styled table td {
        border-bottom: 1px solid #e0e0e0;
    }

        .r-table--style-styled table td:not(:last-child) {
            border-right: 1px solid #e0e0e0;
        }

    .r-table--style-styled table th:not(:last-child) {
        border-right: 1px solid #e0e0e0;
    }*/

    .r-table--style-styled table th + th,
    .r-table--style-styled table th + td,
    .r-table--style-styled table td + td {
        border-left: 1px solid var(--color-text);
    }

.r-table--style-styled tr + tr th,
.r-table--style-styled tr + tr td {
    border-top: 1px solid var(--color-text);
}


.r-table--alignment-left .table-wrapper {
    margin-left: 0;
    margin-right: auto;
}

.r-table--alignment-center .table-wrapper {
    margin-left: auto;
    margin-right: auto;
}

.r-table--alignment-right .table-wrapper {
    margin-left: auto;
    margin-right: 0;
}

.r-table p,
.r-table p {
    margin-bottom: 0 !important;
}

/* usage items */
.r-usage-items {
}

    .r-usage-items .table {
        display: table;
        width: 100%;
        table-layout: auto;
    }

        .r-usage-items .table .tr {
            display: table-row;
        }

            .r-usage-items .table .tr .td {
                display: table-cell;
                vertical-align: middle;
            }

                .r-usage-items .table .tr .td:first-child {
                    white-space: nowrap;
                }

                .r-usage-items .table .tr .td:not(:first-child) {
                    width: 100%;
                }

                .r-usage-items .table .tr .td:first-child img {
                    display: inline-block;
                    max-width: none;
                }

                .r-usage-items .table .tr .td .text {
                    background: var(--bg-color-footer);
                    color: var(--color-text);
                    border-radius: 5px;
                }



.products-container {
    width: 100%;
}

.products-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr); /* desktop 4 v vrsti */
    align-items: stretch; /* equal height */
}

    /* kartica ostane flex-column */
    .products-grid .product-card {
        display: flex;
        flex-direction: column;
        width: auto;
        height: 100%;
    }

        .products-grid .product-card .product-card__image-wrap {
            min-height: auto;
        }

/* 3 v vrsti */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 2 v vrsti */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 1 v vrsti */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

p s {
    display: inline-block;
    background: color-mix(in srgb, var(--bg-color-glow) 80%, transparent);
    box-shadow: 0 0 18px 8px var(--bg-color-glow);
    border-radius: 999px; /* elipsa */
    padding: 0 4px; /* da glow ne reže teksta */
    text-decoration: none;
}

#newsletter {
    position: absolute;
    top: -8rem;
}

/* shop */

.btn-shop {
    --bs-btn-color: #000;
    --bs-btn-bg: #DCDCDC;
    --bs-btn-border-color: #DCDCDC;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #D3D3D3;
    --bs-btn-hover-border-color: #D3D3D3;
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #D3D3D3;
    --bs-btn-active-border-color: #D3D3D3;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #F5F5F5;
    --bs-btn-disabled-border-color: #F5F5F5
}

.btn-shop-outline {
    --bs-btn-color: #000;
    --bs-btn-bg: #DCDCDC;
    --bs-btn-border-color: #DCDCDC;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #D3D3D3;
    --bs-btn-hover-border-color: #D3D3D3;
    --bs-btn-focus-shadow-rgb: 130,138,145;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #D3D3D3;
    --bs-btn-active-border-color: #D3D3D3;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #F5F5F5;
    --bs-btn-disabled-border-color: #F5F5F5
}

/* header basket */
.dropdown-menu-basket {
    width: 300px;
    max-height: 90vh;
    overflow-y: auto;
}

.dropdown-basket a,
.dropdown-basket a:hover {
    color: #fff;
    text-decoration: none;
}

/* slide animacija */
.dropdown-menu.show .dropdown-menu-basket {
    transform: translateY(0);
    transition: transform 150ms ease;
}

.dropdown-menu .dropdown-menu-basket {
    transform: translateY(5px);
}

/* progress bar na dnu */
.dropdown-menu-basket {
    position: relative; /* nujno za ::after */
}

.dropdown-menu-basket::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: var(--color-primary);
    transition: width 2s linear;
}

/* ko dodamo .run → bar teče */
.dropdown-menu-basket.run::after {
    width: 100%;
}


#discount-code-label {
    color: var(--color-heading);
}

.heading-color {
    color: var(--color-heading);
}

.nowrap {
    white-space: nowrap;
}

.cart-qty {
    width: 50px;
}

/* privzeto: small gumb */
.btn-sm-until-sm,
.btn-sm-until-md,
.btn-sm-until-lg,
.btn-sm-until-xl {
    padding: .25rem .5rem;
    font-size: .875rem;
}

/* od SM naprej → normal */
@media (min-width: 576px) {
    .btn-sm-until-sm {
        padding: .375rem .75rem;
        font-size: 1rem;
    }
}

/* od MD naprej → normal */
@media (min-width: 768px) {
    .btn-sm-until-md {
        padding: .375rem .75rem;
        font-size: 1rem;
    }
}

/* od LG naprej → normal */
@media (min-width: 992px) {
    .btn-sm-until-lg {
        padding: .375rem .75rem;
        font-size: 1rem;
    }
}

/* od XL naprej → normal */
@media (min-width: 1200px) {
    .btn-sm-until-xl {
        padding: .375rem .75rem;
        font-size: 1rem;
    }
}

.mini-cart-progress {
    height: 3px;
    width: 100%;
    background: rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

    .mini-cart-progress::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0%;
        background: #28a745;
        transition: width 3s linear;
    }

    .mini-cart-progress.run::after {
        width: 100%;
    }

/* osnovno stanje: malo spodaj */
.dropdown-menu {
    transform: translateY(5px);
    transition: transform 150ms ease;
}

    /* odprto stanje: na mestu */
    .dropdown-menu.show {
        transform: translateY(0);
    }

