:root {
    --primary: #6610F2;
}

.top-bar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.btn-light {
    background-color: #fff;
    border-color: #dee2e6;
    color: #212529;
}

.bg-primary, .btn-primary {
    background-color: var(--primary) !important;
}

.navbar-brand {
    color: var(--primary);
}

.btn-light i {
    color: var(--primary);
}

.slider_nav {
    max-height: 250px;
}

.carousel-item img {
    height: 250px;
    object-fit: cover;
}

.carousel-item {
    transition: transform 2s linear;
}

@media (min-width: 1200px) {
    .slider_nav {
        max-height: 300px;
        object-fit: cover;
    }
}

@media (min-width: 1400px) {
    .slider_nav {
        max-height: 350px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    a.btn {
        --bs-btn-font-size: 1rem;
        --bs-btn-padding-y: .50rem;
        --bs-btn-padding-x: .75rem; 
    }
}

.thumb-image{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    cursor: pointer;
    transition: .2s;
}

@media (min-width: 577px){

    .thumb-image{
        max-width: 90px;
    }

}

.thumb-image:hover {
    transform: scale(1.05);
    border: 2px solid #6f42c1;
}

@media (max-width: 576px){

    .thumb-image{
        max-width: 55px;
    }

}
    
.img-wrap {
    position: relative;
    padding: 1rem;
}

.img-wrap span {
    position: absolute;
    top: 10px;
    right: 10px;
}

.info-wrap {
    padding: 1rem 1.2rem;
}

.info-wrap .title {
    display: block;
    text-decoration: none;
    color: #51585e;
}

/* .price-wrap .price-discount {
    font-size: 1.2em;
} */

.img-wrap {
    height: 240px;
    text-align: center;
}

.img-wrap img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit:contain;
}

.social-payment-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.5);
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-logo {
    height: 25px;
    width: auto;
    object-fit: contain;
}

footer .payment-logo {
    filter: none;
    opacity: 1;
    mix-blend-mode: normal;
}

.payment-logo:hover {
    transform: scale(1.05);
}

.breadcrumb a {
    color: #fff;
    opacity: .9;
}

.breadcrumb .breadcrumb-item {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* gallery */
.gallery-wrap .img-big-wrap {
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-wrap .img-big-wrap img {
    max-width: 100%;
}

.gallery-wrap .thumbs-wrap {
    text-align: center;
}

.gallery-wrap .thumbs-wrap a {
    width: 60px;
    height: 60px;
    border: 1px solid #dde2e6;
    border-radius: .4rem;
    margin: 3px;
    display: inline-block;
    overflow: hidden;
}

.gallery-wrap .thumbs-wrap img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.checked {
    color: orange;
}

.credit-card {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 12px;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
}

#cardIcon {
    width: 50px;
    opacity: 0.9;
}

.product-description{
    white-space: pre-line;
    line-height: 1.7;
}

.image-zoom-container{
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border-radius: 12px;
}

.zoom-image{
    width: 100%;
    transition: transform 0.15s ease;
}