.upper-slider .swiper-slide img {
    width: 100%;
    height: 620px;
    object-fit: revert;
    transition: opacity 0.2s;
	margin-top:101px;
}
.upper-slider .swiper-slide img:hover {
    opacity: 0.9;
}
.upper-slider .swiper-pagination-bullet-active {
    background-color: var(--primary);
}
.category-boxes a {
    position: relative;
    height: 240px;
    width: 280px;
    overflow: hidden;
}
.category-boxes img {
    height: 240px;
    width: 280px;
    object-fit: cover;
    filter: blur(0.5px);
    transition: transform 0.5s;
}
.category-boxes img + div {
    border: 3px solid white;
    height: 90%;
    width: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
}
.category-boxes img + div span {
    color: white;
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
}
.category-boxes a:hover img {
    transform: scale(1.5);
}
.products {
    margin: 50px 0;
}
.products a {
    color: unset;
    text-decoration: none;
}
.products .swiper-button-prev,
.products .swiper-button-next {
    color: var(--primary);
}
.product {
    border-radius: 10px;
    width: 100%;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    position: relative;
}
.products .add-to-basket-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 23px;
    height: 23px;
    z-index: 10;
    transition: all .1s ease-in-out;
    visibility: hidden;
}
.product-wrap:hover .add-to-basket-btn {
    visibility: visible;
    transform: scale(1.1);
}
.product:hover,
.products .add-to-basket-btn:hover + a .product {
    opacity: 0.9;
}
.product img {
    width: 100%;
    height: 300px;
    object-fit: contain;
	margin-bottom:15px;
    padding: 20px;
}
.product span {
    font-weight: 600;
    font-size: 14px;
}
.product span + span {
    font-weight: 400;
}
.product span + span img {
    height: 10px;
    width: 10px;
    padding: 0;
}
.info {
    background-color: var(--secondary);
    padding: 40px;
    font-size: 20px;
}
.info svg {
    height: 40px;
    width: auto;
}
.info span {
    font-size: 16px;
    font-weight: 500;
    padding-left: 10px;
    white-space: nowrap;
    text-transform: uppercase;
}
@media screen and (max-width: 920px) {
	.upper-slider .swiper-slide img {
		margin-top:0px;
	} 
}