#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

#header,
#header a {
    color: #fff;
    font-weight: 500;
}

#header #logo {
    width: 200px;
}

#header .btn-icon {
    font-size: 20px;
}

#header .cart-items-count {
    background-color: #fff;
    min-width: 16px;
    height: 16px;
    font-size: 12px;
    border-radius: 8px;
    position: absolute;
    top: -5px;
    right: -5px;
    text-align: center;
    color: #006ea7;
    padding: 0 5px;
}

.fixed-menu-scroll #header {
    transition: 200ms all ease;
    transform: translateY(-100%);
}

.fixed-menu-scroll.scroll-up #header {
    transform: translateY(0);
}

#nav-menu {
    text-align: center;
}

#nav-menu .dropdown {
    position: relative;
    z-index: 10;
}

#nav-menu .dropdown #product-menu {
    text-align: left;
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 250px;
    background: var(--color-main-dark);
}

#nav-menu .dropdown:hover #product-menu {
    display: block;
}


/* product template */
.product-template {
    position: relative;
}

.product-template .each {
    cursor: pointer;
}

.product-template .alt-image {
    position: absolute;
    inset: 0;
    display: none;
}

.product-template .picture {
    overflow: hidden;
}

.product-template .picture::after {
    content: "";
    position: absolute;
    background: transparent linear-gradient(180deg, #FFFFFF00 0%, #505050AF 45%, #2C2C2CE3 71%, #191919 100%);
    mix-blend-mode: darken;
    bottom: -10%;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 0;
    z-index: 9;
    transition: opacity .25s ease-in-out, bottom .2s ease-in-out;
}

.product-template .variants {
    position: absolute;
    bottom: 2%;
    width: 100%;
    z-index: 10;
    display: none;
    flex-wrap: wrap;
    color: #efefef;
    font-size: 13px;
    line-height: 13px;
}

.product-template .variant {
    padding: .35rem .5rem;
    position: relative;
}

.product-template .variant.disabled {
    opacity: 0.5;
}

.product-template .variant.disabled::before {
    content: '';
    width: 93%;
    height: 1px;
    background: #ccc;
    position: absolute;
    cursor: not-allowed;
    top: 45%;
    left: 0;
}

.product-template .flags {
    position: absolute;
    top: 2.5%;
    z-index: 10;
}

.product-template .flag {
    background-color: #151515;
    color: #efefef !important;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    padding: .45rem .75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-template .title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    min-height: 45px;
}

.product-template .subtitle {
    font-size: 15px;
    opacity: 0.7;
    font-weight: 400;
}

.product-template .price {
    background-color: #efefef;
    border: 1px solid #efefef;
    color: #7d7d7d;
    font-size: 17px;
    font-weight: 500;
}

.product-template .price .retail {
    opacity: 0.5;
    font-size: 14px;
}

.product-template .hover .alt-image {
    display: block;
}

.product-template .hover .picture::after {
    bottom: 0;
    opacity: 1;
}

.product-template .hover .variants {
    display: flex;
    transition: all .2s ease-in-out;
}

.product-template .hover .data {
    background-color: #151515;
}

.product-template .hover a,
.product-template .hover .title,
.product-template .hover .subtitle {
    color: #fff;
}

.product-template .hover .price {
    color: #efefef;
    border-color: #aaa;
    background-color: #151515;
}

/** swiper */
:root {
    --swiper-theme-color: var(--color-main) !important;
}

.swiper-theme:not(.inside-bullet) {
    padding-bottom: 40px;
}

.swiper-theme ~ .swiper-pagination .swiper-pagination-bullet,
.swiper-theme .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 3px;
    border-radius: 5px;
    transform: scale(1);
}

.swiper-theme ~ .swiper-pagination .swiper-pagination-bullet-active,
.swiper-theme .swiper-pagination .swiper-pagination-bullet-active {
    background: #050505;
    width: 32px;
    height: 3px;
    border-radius: 5px;
}

.swiper-theme ~ .swiper-button-prev,
.swiper-theme ~ .swiper-button-next,
.swiper-theme .swiper-button-prev,
.swiper-theme .swiper-button-next {
    color: #fff;
    background-color: #414141;
    --swiper-navigation-size: 15px;
    width: 25px !important;
    height: 25px;
    font-weight: 900;
    top: 40%;
}

.swiper-theme:not(.inside-arrow) ~ .swiper-button-prev,
.swiper-theme:not(.inside-arrow) .swiper-button-prev {
    left: -3%;
}

.swiper-theme:not(.inside-arrow) ~ .swiper-button-next,
.swiper-theme:not(.inside-arrow) .swiper-button-next {
    right: -3%;
}

.swiper video {
    pointer-events: none;
}


/** promo-featured */
#promo-featured-home .info {
    color: #000;
}

#promo-featured-home .promo-title {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

#promo-featured-home .promo-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.7;
    font-size: 14px;
}
