@import url("https://fonts.googleapis.com/css2?family=Baloo+Thambi+2&family=Raleway&family=Rubik&display=swap");
/* Sass Template */
/* global classes */
button,
button:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* typography classes */
.font-baloo {
    font-family: "Baloo Thambi 2", cursive;
}

.font-rale {
    font-family: "Raleway", cursive;
}

.font-rubik {
    font-family: "Rubik", cursive;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-20 {
    font-size: 20px;
}

/* Color Template  */
.color-primary {
    color: #003859;
}

.color-primary-bg {
    background: #003859;
}

.color-second {
    color: #00A5C4;
}

.color-second-bg {
    background: #00A5C4;
}

.color-yellow {
    color: #FFD289;
}

.color-yellow-bg {
    background: #FFD289;
}

/*  top sale template   */
#top-sale .owl-carousel .item .product a {
    overflow: hidden;
}
#top-sale .owl-carousel .item .product img {
    transition: transform 0.5s ease;
}
#top-sale .owl-carousel .item .product img:hover {
    transform: scale(1.1);
}
#top-sale .owl-carousel .owl-nav button {
    position: absolute;
    top: 30%;
    outline: none;
}
#top-sale .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
#top-sale .owl-carousel .owl-nav button.owl-prev span,
#top-sale .owl-carousel .owl-nav button.owl-next span {
    font-size: 35px;
    color: #003859;
    padding: 0 1rem;
}
#top-sale .owl-carousel .owl-nav button.owl-prev span {
    margin-left: -4rem;
}
#top-sale .owl-carousel .owl-nav button.owl-next {
    right: 0;
}
#top-sale .owl-carousel .owl-nav button.owl-next span {
    margin-right: -4rem;
}

/*   Special Price Section Template */
#special-price .grid .grid-item {
    margin-right: 1.2rem;
    margin-top: 1rem;
}

/*   Fairly Used Section Template */
#fairly-used .owl-carousel .item .product a {
    display: block;
    padding: 8px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

#fairly-used .owl-carousel .item .product img {
    width: 100%;
    height: auto;
    display: block;
}

/*# sourceMappingURL=style.css.map */

/* Banner Carousel Styles */
#banner-area .owl-carousel .item {
    position: relative;
    overflow: hidden;
}

#banner-area .owl-carousel .item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

#banner-area .owl-carousel .item:hover img {
    transform: scale(1.05);
}

#banner-area .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

#banner-area .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.9) !important;
}

#banner-area .owl-nav button.owl-prev {
    left: 20px;
}

#banner-area .owl-nav button.owl-next {
    right: 20px;
}

#banner-area .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

#banner-area .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#banner-area .owl-dots button.owl-dot.active {
    background: #fff !important;
    transform: scale(1.2);
}

/* Fade Animation */
#banner-area .owl-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#banner-area .owl-carousel .owl-item.active {
    opacity: 1;
}
