a {
    text-decoration: none;
    color: inherit;
}

.bg-color1 {
    background-color: #f2f2f2;
}

/* Preloader */
.preloader {
	background-color: white;
	top: 0;
	left: 0; 
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 9999;
	font-size: 8px;
	text-align: center;
	display: flex;
  	justify-content: center;
  	align-items: center;
}

/* Body */

body {
    font-family: "Poppins", sans-serif;
}

.offcanvas.show .nav-item {
    border-bottom: 1px solid black;
}

.offcanvas.show .nav-link {
    color: black;
}

.cart-btn {
    width: 40px;
    height: 40px;
}

.category-item {
    height: 200px;
    overflow: hidden;
    border-radius: 0;
}

.product-img {
    overflow: hidden;
}

.super-container
{
	width: 100%;
	overflow: hidden;
}

/* Infinite Marquee */
.marquee {
    width: 100% !important;
    grid-column-gap: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: flex;
    overflow: hidden;
    font-size: 12px;
}

.marquee-content {
    min-width: 100%;
    grid-column-gap: 10rem;
    flex: none;
    justify-content: space-around;
    display: flex;
}

.marquee-content .marquee-item:last-child {
    margin-right: 10rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.scroll {
    animation: scroll 25s linear infinite;
}


#catalogue {
    margin-top: 150px;
}

.sidebar-categories {
    overflow: hidden;
    list-style: none;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
}

.sidebar-categories li.active a
{
	color: #fe4c50;
}

.sidebar-categories li.active:hover a
{
	color: #fe4c50;
}

.sidebar-categories li a
{
	font-size: 18px;
	line-height: 40px;
	color: #51545f;
	cursor: pointer;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 5px;
}

.sidebar-categories li a:hover
{
	color: #b5aec4;
}

.products-carousel .view-product {
    opacity: 0.5;
    transition: .5s ease-in;
}

.slick-center .view-product {
    opacity: 1;
}

.products-item { 
    width: 100%;
    margin-bottom: 20px;
}

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

.product-price {
    color: #fe4c50;
    font-weight: 600;
    font-size: 18px;
}

.deal-ofthe-week-col
{
    height: 100%;
    position: absolute;
}

.deal-ofthe-week-img {
    opacity: .7;
    width: 100%;
}

.category-item img, .products-item img {
    transition: all .8s ease-in-out;
}

@media (min-width: 768px) {
    .sidebar-categories {
        display: block;
        overflow: hidden;
        gap: 0;
    }

    .sidebar-categories li a {
        background: none;
        padding: 0;
        border-radius: 0;
    }

    .products-grid .products-item {
      width: 33.3%; 
      margin-bottom: 0;
    }

    .products-item .view-product {
        opacity: 0;
    }
    
    .products-item:hover .view-product {
        transition: .2s ease-in-out;
        opacity: 1;
    }
    
    .view-product {
        opacity: 0;
    }

    .deal-ofthe-week-col {
        position: relative;
    }

    .deal-ofthe-week-img {
        opacity: 1;
    }

    .product-search-result {
        opacity: .75;
        transition: all .3s ease-in-out;
    }
    
    .product-search-result:hover {
        opacity: 1;
    }
    
    .category-item:hover img, .products-item:hover img {
        transform: scale(1.05);
    }
    
    .reveal {
        opacity: 0;
    }
    
    .products-item:hover .reveal {
        opacity: 1;
    }

    .products-item:hover {
        transition: .2s ease-in-out;
        box-shadow: var(--bs-box-shadow) !important;
    }
}

.cart-page-two {
    height: 0;
}

.cart-page-two.show {
    height: 100%;
}

.quantity {
    width: 24px;
    text-align: center;
}

.quantity-btn {
    color: white;
    display: inline-block;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border: none;
    padding: 0;
}

.navbar-brand {
    font-size: 18px;
}

.slick-slide img {
    width: 250px;
}

.slick-prev {
    display: block;
    position: absolute;
    z-index: 1000;
    top:50%;
    transform: translateY(-50%);
}
  
.slick-next {
    display: block;
    position: absolute;
    right: 0px;
    top:50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.slick-next, .slick-prev {
    background-color: #dc3545;
    color: white;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.filter-alert {
    font-size: 14px;
    display: none;
}

.pageclip-form__success {
    background: black;
}

.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
}

.icon.white {
    filter: invert(1);
}

.icon-search {
    background: url('../svg/search.svg');
}

.icon-cart-fill {
    background: url('../svg/cart-fill.svg');
}

.icon-cart-plus {
    background: url('../svg/cart-plus.svg');
}

.icon-bag {
    background: url('../svg/bag.svg');
}

.icon-arrow-left {
    background: url('../svg/arrow-left.svg');
}

.icon-arrow-right {
    background: url('../svg/arrow-right.svg');
}

.icon-facebook {
    background: url('../svg/facebook.svg');
}

.icon-instagram {
    background: url('../svg/instagram.svg');
}

.icon-chevron-left {
    background: url('../svg/chevron-left.svg');
}

.icon-chevron-right {
    background: url('../svg/chevron-right.svg');
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: #fe4c50;
    border-radius: 50%;
}