﻿html {
    box-sizing: border-box;
}

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

* {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    background-color: #fff;
    font-family: "Urbanist", sans-serif;
    color: #000000;
}

.font-weight-bold {
    font-family: "Urbanist", sans-serif;
}

.hero {
    background: url('../images/hero-bg.jpg')
}
.display-7 {
    font-size: 2rem;
}
.custom-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

    .custom-toggler .line {
        display: block;
        height: 2px;
        background-color: #fff;
        transition: width 0.3s ease;
    }

    .custom-toggler .line-top {
        width: 24px;
    }

    .custom-toggler .line-bottom {
        width: 12px;
    }

    /* Hover Effect */
    .custom-toggler:hover .line-bottom {
        width: 24px;
    }
.custom-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

    .custom-toggler:focus,
    .custom-toggler:hover,
    .custom-toggler:active {
        border: none;
        outline: none;
        box-shadow: none;
    }


.simple-outline-btn {
    color: white;
    border: 2px solid white;
    background: transparent;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

    .simple-outline-btn:hover {
        background-color: rgba(255, 255, 255, 0.05); /* subtle hover if desired */
    }

.carousel-inner {
    padding: 1em;
}

.card {
    margin: 0 0.5em;
    /*box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);*/
    border: none;
}

.carousel-control-prev,
.carousel-control-next {
    background-color: #e1e1e1;
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (min-width: 768px) {
    .carousel-item {
        margin-right: 0;
        flex: 0 0 25%;
        display: block;
    }

    .carousel-inner {
        display: flex;
    }
    
}

.card .img-wrapper {
    max-width: 100%;
    height: 13em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card img {
    max-height: 100%;
}

@media (max-width: 767px) {
    .card .img-wrapper {
        height: 17em;
    }
}

.btn-wrapper {
    top: 0;
    right: 0
}
.carousel-control-next {
    left: 0!important;
    right: unset!important
}
.carousel-control-prev {
    right: 0 !important;
    left: unset !important;
    background-color: #000;
    opacity: 1;
   
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 1rem;
    height: 1rem
}
.carousel-control-next {
    border-radius: 20px;
    width: 10vh!important;
    margin-left: .5rem;
    border: solid 2px #000;
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

/* Slide-in Nav Styles */
.side-nav {
    position: fixed;
    top: 0;
    left: calc(-100%/4);
    height: 100%;
    width: calc(100%/4);
    background: #fff;
    color: #000;
    transition: left 0.3s ease;
    z-index: 1055;
    padding: 1rem;
}

    .side-nav.active {
        left: 0;
    }
@media (min-width: 768px) and (max-width: 992px) {
    .side-nav {
        width: calc(100%/2);
        left: calc(-100%/2);
    }
}
@media (max-width: 767px) {
    .side-nav {
        left: -100%;
        width: 100%;
        background: #ffffffa3;
    }
    .hero {
        background-position: 50% 10%
    }
    .carousel .btn-wrapper{
        right: 25%;
    }
    .product-image {
        height: 50vh;
        z-index: 0;
    }
    .product-details {
        z-index: 1;
        background: #fff;
    }
}
/* Blur Overlay */
.overlay-blur {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1050;
    display: none;
}

    .overlay-blur.active {
        display: block;
    }


/*Product Desc*/
.price-old {
    text-decoration: line-through;
    color: gray;
}

.price-new {
    font-weight: bold;
}

.qty-control {
    width: 50px;
    text-align: center;
}

.btn-black {
    background-color: black;
    color: white;
    border: none;
}

    .btn-black:hover {
        background-color: #333;
    }


#imageGallery, #imageGalleryThumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}

    #imageGallery img, #imageGalleryThumbs img {
        width: 100%;
        display: block;
    }

#imageGalleryThumbs {
    max-height: 500px;
    overflow-y: auto;
}


.cartCount {
    font-size: 0.7rem;
    background: #6fa0ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    top: 0;
}

.lSAction > a {
    top: 5%!important;
}
.lSAction > .lSPrev {
    right: 70px;
    left: unset!important
}
.lSPrev {
    background-image: url(../images/prev-arrow.png) !important;
    background-repeat: no-repeat;
    opacity: 1 !important;
}
.lSNext {
    background-image: url(../images/next-arrow.png) !important;
    background-repeat: no-repeat;
    background-position: unset!important;
    background-size: contain;
    width: 58px!important;
    opacity: 1!important;
}

.vertical ul.lSPager {
    left: 0!important;
    right: unset!important;
}
.form-control {
    text-transform: uppercase
}
#site-captcha {
    display: flex;
    justify-content: center;
    align-items: center;
}