.bodyMainWrapp{
    position: relative;
    display: flex;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.bodyMainWrapp.bodyMainWrappNoSidebar {
    flex-direction: column;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

:root{
    --sideHeight: calc(100vh - 122.77px + 41.77px);
}

.warningActive{
    --sideHeight: calc(100vh - 122.77px);
}

/* Left menu */

.bodyMainWrapp .secondCategoriesWrapp{
    background-color: #49484733;
    width: 100%;
    height: 100%;
    max-width: 1280px;
    padding-left: 230px;
    z-index: 20;
    position: fixed;
    visibility: hidden;
}

.bodyMainWrapp .secondCategoriesWrapp.secondCategoriesWrappShow,
body.secondCategoriesWrappShow .bodyMainWrapp .secondCategoriesWrap {
    visibility: visible;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories{
    background-color: var(--text-white);
    width: 738px;
    height: 100%;
    padding: 30px 52px 30px 30px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-content: flex-start;
    max-height: var(--sideHeight);
    overflow-y: auto;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp{
    max-width: 230px;
    display: block;
    height: fit-content;
    flex: 0 0 calc(33.333% - 24px);
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp.hidden {
    display: none !important;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp a{
    color: var(--text-primary);
    text-decoration: none;
    display: block;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp .categoryHead{
    font-family: 'VolteSemibold', 'sans-serif';
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp .categoryHead a{
    margin-top: 6px;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp .categoryHead img{
    width: 30px;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp .categories{
    display: flex;
    margin-top: 12px;
    flex-direction: column;
    gap: 8px;
    margin-left: calc(30px + 4px);
    height: fit-content;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp .categories a:hover{
    text-decoration: underline;
}

.bodyMainWrapp .secondCategoriesWrapp .secondCategories .categoryWrapp .categories a{
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

@media screen and (max-width:1280px) {
    .bodyMainWrapp .secondCategoriesWrapp{
        display: none;
    }
}


.firstSideMenuCont{
/*     width: 20%; */
/*     min-width: 20%; */
    width: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    border-right: 1px solid var(--border-primary);
    position: sticky;
    top: calc(122.77px - 41.77px);
    z-index: 199;
    padding-right: 8px;
    height: var(--sideHeight);
}

.warningActive .firstSideMenuCont{
    top: 115.77px;
}

.firstSideMenuCont .con{
    width: 100%;
    margin-top: 18px;
    max-height: calc(var(--sideHeight) - 18px);
    overflow-y: scroll;
    margin-bottom: 18px;
    padding-right: calc(8px + 4px);
}

.firstSideMenuCont .head{
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-primary);
}



.firstSideMenuCont .head .circleWrapp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 48px;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
}

.firstSideMenuCont .head .circleWrapp:first-child{
    margin-left: 4px;
}

.firstSideMenuCont .categories,
.firstSideMenuCont .foot .normalCats{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 12px 0px;
}

.firstSideMenuCont .foot .normalCats{
    padding: 0px;
}


.firstSideMenuCont .con::-webkit-scrollbar{
    width: 4px;
}
.firstSideMenuCont .con::-webkit-scrollbar-thumb{
    border-radius: 99px;
    background-color: var(--border-primary);
}

.firstSideMenuCont .con::-webkit-scrollbar-track{
    background: inherit;
}

.firstSideMenuCont .categories .category,
.firstSideMenuCont .foot .normalCats .category{
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 12px;
    padding: 6px 10px 6px 8px;
    font-weight: normal;
    transition: 0.3s;
    cursor: pointer;
}

.firstSideMenuCont .categories .category:hover,
.firstSideMenuCont .foot .normalCats .category:hover{
    background-color: var(--blue-200);
    border-radius: 8px;
}

.firstSideMenuCont .categories .category .title,
.firstSideMenuCont .foot .normalCats .category .title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.firstSideMenuCont .categories .category .title h3,
.firstSideMenuCont .foot .normalCats .category .title h3{
    font-family: 'VolteRegular', sans-serif;
    font-size: 13px;
    color: var(--text-primary);

}

/* .homeWrapp .firstSide .categories .category .title .img,
.homeWrapp .firstSide .foot .normalCats .category .title .img{
    max-width: 30px;

}
 */

.firstSideMenuCont .categories .category .title .img img,
.firstSideMenuCont .foot .normalCats .category .title .img img{
    width: 30px;
    height: 30px;
}

.firstSideMenuCont .categories .category svg,
.firstSideMenuCont .foot .normalCats .category svg{
    min-width: 6px;
    min-height: 3px;
}

.firstSideMenuCont .foot{
    border-top: 1px solid var(--border-primary);
    margin: 0 auto;
}

.firstSideMenuCont .foot .banner{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

.firstSideMenuCont .foot .banner img{
    width: 210px;
}


/* Content */

.bodyMainWrapp .secondSide{
    width: 100%;
    height: 100%;
    padding-top: 32px;
/*     height: calc(100vh - 157px);
    overflow-y: scroll;
    max-height: calc(100vh - 157px); */
}

/* Content: Banners */

.homeWrapp .secondSide .mainBanner{
    border-radius: 12px;
    margin: 0 auto;
}

.homeWrapp .secondSide .mainBanner,
.homeWrapp .secondSide .bannersWrapp .banner{
    position: relative;
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.homeWrapp .secondSide .mainBanner a{
    text-decoration: none;
    position: absolute;
    bottom: 40px;
    left: 50px;
    padding: 6px 12px;
    font-family: 'VolteSemibold', 'sans-serif';
}

@media screen and (max-width:900px) {
    .homeWrapp .secondSide .mainBanner a{
        bottom: 30px;
        left: 30px;
    }
}

@media screen and (max-width:700px) {
    .homeWrapp .secondSide .mainBanner a{
        bottom: 16px;
        left: 16px;
    }
}

.homeWrapp .secondSide .mainBanner img{
    width: 1019px;
}

.homeWrapp .secondSide .categories{
    margin-top: 32px;
    margin-bottom: 32px;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 11px;
    column-gap: 16px;
    display: none;
}

.homeWrapp .secondSide .categories .category{
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 6px 8px 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-primary);
    text-decoration: none;
}

.homeWrapp .secondSide .categories .category h3{
    font-family: 'VolteRegular', sans-serif;
}

.homeWrapp .secondSide .categories .category .img{
    width: 30px;
    height: 30px;
}

.homeWrapp .secondSide .categories .category .img img{
    width: 30px;
    height: 30px;
}

.homeWrapp .secondSide .bannersWrapp{
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

.homeWrapp .secondSide .bannersWrapp.mobile{
    display: none;
    gap: 0px;
}

.homeWrapp .secondSide .bannersWrapp.mobile{
    position: relative;
}

.homeWrapp .secondSide .bannersWrapp.mobile .banner{
    transition: transform 0.5s ease-in-out;
}

.homeWrapp .secondSide .bannersWrapp .banner{
    width: 100%;
}

.homeWrapp .secondSide .bannersWrapp .banner a{
    position: absolute;
    text-decoration: none;
    left: 16px;
    bottom: 16px;
    padding: 6px 12px;
    font-family: 'VolteSemibold', 'sans-serif';
}

.homeWrapp .secondSide .bannersWrapp .banner img{
    width: 100%;
}

.homeWrapp .secondSide .specialInformations{
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    border-radius: 12px;
    margin: 0 auto;
    margin-top: 34px;
    padding: 20px 15px;
    padding-bottom: 25px;
    gap: 20px;
    position: relative;
}

.homeWrapp .secondSide .specialInformations .info{
    text-align: center;
    max-width: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    line-height: 130%;
}

.homeWrapp .secondSide .specialInformations .info p{
    max-width: 146.33px;
}

.homeWrapp .secondSide .specialInformations .border{
    border: 1px solid  var(--primary-color);
    position: absolute;
    top: 50px;
    width: 100%;
    height: 70%;
    border-radius: 12px;
}

.homeWrapp .secondSide .specialInformations svg{
    width: 61px;
    top: -20px;
}

/* Content: Products */

.homeWrapp .secondSide section:first-of-type{
    margin-top: 49px;
}

.homeWrapp .secondSide section{
    margin: 0 auto;
    margin-top: 40px;
    padding-top: 7px;
    /* padding-bottom: 40px; */
    padding-bottom: 37px;
    border-bottom: 1px solid var(--border-primary);
}

.homeWrapp .secondSide section.last,
.homeWrapp .secondSide section:last-child{
    border-bottom: none;
}

.homeWrapp .secondSide section.last{
    padding-bottom: 76px;
}

.homeWrapp .secondSide section:last-child{
    margin-bottom: 102px;
    margin-top: 0px;
    padding-bottom: 0px;
}

.homeWrapp .secondSide section .head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 32px;
}

.homeWrapp .secondSide section .head a,
.homeWrapp .secondSide section a.viewMore{
    color: var(--text-primary);
}

.homeWrapp .secondSide section a.viewMore{
    display: none;
}

.homeWrapp .secondSide section .list,
.productListWrapperTemplate{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 32px;
    row-gap: 42px;
}

@media screen and (max-width:850px) {
    .homeWrapp .secondSide section .list,
    .productListWrapperTemplate{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.homeWrapp .secondSide section .product,
.productListWrapperTemplate .product{
    width: 100%;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    margin-bottom: -46px;
}

.homeWrapp .secondSide section .product .image,
.productListWrapperTemplate .product .image{
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
/*     margin-bottom: 14px; */
    position: relative;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp,
.productListWrapperTemplate .product .addTofavoriteWrapp,
.specificProductSection .productMain .addTofavoriteWrapp{
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec{
    position: relative;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp ,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp {
    position: relative;
    margin-top: 12px;
    display: none;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp.show .favoriteSec .favoriteListWrapp ,
.productListWrapperTemplate .product .addTofavoriteWrapp.show .favoriteSec .favoriteListWrapp,
.specificProductSection .productMain .addTofavoriteWrapp.show .favoriteSec .favoriteListWrapp{
    display: block;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .triangel ,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .triangel,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .triangel{
    width: 39.523px;
    height: 39.523px;
    transform: rotate(-135deg);
    background-color: var(--surface-dark);
    border-radius: 4px;
    position: absolute;
    right: -4px;
    z-index: 9;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists ,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists{
    background-color: var(--surface-dark);
    border-radius: 12px;
    max-width: 268px;
    min-width: 228px;
    position: absolute;
    right: -15px;
    color: white;
    z-index: 11;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .name ,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .name,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .name{
    font-family: 'VolteSemibold', 'sans-serif';
    margin: 12px 16px;
    margin-bottom: 10px;
    font-size: 16px;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .favoriteList ,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .favoriteList,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .favoriteList{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
    padding: 0px 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-primary);
    font-size: 14px;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .favoriteList span,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .favoriteList span,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .favoriteList span{
    color: var(--text-secondary);
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew{
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: underline;
    padding: 10px 16px;
    padding-bottom: 18px;
    font-size: 14px;
    cursor: pointer;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew .icon,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew .icon,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew .icon{
    display: flex;
    width: 24px;
    height: 24px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: var(--surface-smoke);
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew .icon svg,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew .icon svg,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .createNew .icon svg{
    min-width: 7px;
    min-height: 7px;
}

.homeWrapp .secondSide section .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .primary-btn,
.productListWrapperTemplate .product .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .primary-btn,
.specificProductSection .productMain .addTofavoriteWrapp .favoriteSec .favoriteListWrapp .favoriteLists .primary-btn{
    font-size: 14px;
    padding: 6px 12px;
    margin: 0px 16px;
    margin-bottom: 12px;
}

.homeWrapp .secondSide section .product .favorite,
.productListWrapperTemplate .product .favorite,
.specificProductSection .productMain .addTofavoriteWrapp .favorite{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 8px 7px 6px 7px;
    border-radius: 999px;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    margin-left: auto;
    margin-right: 0px;
}

.homeWrapp .secondSide section .product:hover .addTofavoriteWrapp,
.productListWrapperTemplate .product:hover .addTofavoriteWrapp,
.homeWrapp .secondSide section .product .addTofavoriteWrapp.show,
.productListWrapperTemplate .product .addTofavoriteWrapp.show,
.specificProductSection .productMain .prodImgWrapp:hover .addTofavoriteWrapp,
.specificProductSection .productMain .addTofavoriteWrapp.show{
    display: flex;
}

.homeWrapp .secondSide section .product .image .badge,
.productListWrapperTemplate .product .image .badge{
    position: absolute;
    top: 15px;
    left: 16px;
    border-radius: 4px;
    padding: 2px 4px;
    font-size: 14px;
    font-family: 'VolteSemibold', 'sans-serif';
}

.homeWrapp .secondSide section .product .image .badge.discount,
.productListWrapperTemplate .product .image .badge.discount{
    color: var(--text-primary);
    background-color: var(--yellow);
}

.homeWrapp .secondSide section .product .image .badge.new,
.productListWrapperTemplate .product .image .badge.new{
    color: var(--text-white);
    background-color: var(--surface-red);
}

.homeWrapp .secondSide section .product .image .badge.tip,
.productListWrapperTemplate .product .image .badge.tip{
    color: var(--text-white);
    background-color: var(--surface-green);
}

.homeWrapp .secondSide section .product .image .badge.sale,
.productListWrapperTemplate .product .image .badge.sale{
    color: var(--text-white);
    background-color: var(--surface-dark);
}

.homeWrapp .secondSide section .product .image img,
.productListWrapperTemplate .product .image img{
    width: 100%;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.homeWrapp .secondSide section .product .title h3,
.productListWrapperTemplate .product .title h3{
    font-size: 16px;
}

.homeWrapp .secondSide section .product .title h3 a,
.productListWrapperTemplate .product .title h3 a {
    color: currentColor;
    text-decoration: none;
}

.homeWrapp .secondSide section .product .title .smallInfo,
.productListWrapperTemplate .product .title .smallInfo{
    color: var(--text-secondary);
    font-size: 14px;
    margin: 4px 0px;
}

.homeWrapp .secondSide section .product .title .status,
.productListWrapperTemplate .product .title .status,
.specificProductSection .productMain .stock{
    padding-top: 2px;
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    align-items: center;
    font-size: 12px;
}

.homeWrapp .secondSide section .product .title .status .ball,
.productListWrapperTemplate .product .title .status .ball,
.specificProductSection .productMain .stock .ball{
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.homeWrapp .secondSide section .product .title .status.inStock .ball,
.productListWrapperTemplate .product .title .status.inStock .ball,
.specificProductSection .productMain .stock.inStock .ball{
    background-color: var(--surface-green);
}

.homeWrapp .secondSide section .product .title .status.outStock .ball,
.productListWrapperTemplate .product .title .status.outStock .ball,
.specificProductSection .productMain .stock.outStock .ball{
    background-color: var(--surface-red);
}

.homeWrapp .secondSide section .product .title .status.onOrder .ball,
.productListWrapperTemplate .product .title .status.onOrder .ball,
.specificProductSection .productMain .stock.onOrder .ball{
background-color: var(--surface-yellow);
}

.homeWrapp .secondSide section .product:hover,
.productListWrapperTemplate .product:hover{
  position: relative;
}

.homeWrapp .secondSide section .product .productInfo,
.productListWrapperTemplate .product .productInfo{
    background-color: transparent;
    padding: 14px 0px;
    transition: 0.4s;
}

.homeWrapp .secondSide section .product .productInfo .cartWrapp,
.productListWrapperTemplate .product .productInfo .cartWrapp{
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 5%;
    margin-top: 14px;
    height: 46px;
    opacity: 0;
    transition: 0.4s;
}

.homeWrapp .secondSide section .product .productInfo .cartWrapp .amountWrapp,
.productListWrapperTemplate .product .productInfo .cartWrapp .amountWrapp{
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-primary);
    display: flex;
    flex: 1;
    padding: 0;
    justify-items: center;
    align-items: stretch;
    font-size: 16px;
    color: var(--text-primary);
}

.homeWrapp .secondSide section .product .productInfo .cartWrapp .amountWrapp .btn-counter,
.productListWrapperTemplate .product .productInfo .cartWrapp .amountWrapp .btn-counter {
    cursor: pointer;
}

.homeWrapp .secondSide section .product .productInfo .cartWrapp .cart,
.productListWrapperTemplate .product .productInfo .cartWrapp .cart{
    background-color: var(--surface-green);
    border: 0;
    border-radius: 8px;
    height: 100%;
    width: 100%;
    max-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.homeWrapp .secondSide section .product:hover .productInfo,
.productListWrapperTemplate .product:hover .productInfo{
    background-color: white;
    position: relative;
    bottom: 0px;
    transform: translateY(-46px);
    width: 100%;
}

.homeWrapp .secondSide section .product:hover .productInfo .cartWrapp,
.productListWrapperTemplate .product:hover .productInfo .cartWrapp{
    display: flex;
    opacity: 1;
}

.homeWrapp .secondSide section .product .priceWrapp,
.productListWrapperTemplate .product .priceWrapp{
    font-family: 'VolteSemibold', 'sans-serif';
}

.homeWrapp .secondSide section .product .priceWrapp .discountPrice,
.productListWrapperTemplate .product .priceWrapp .discountPrice{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
}

.homeWrapp .secondSide section .product .priceWrapp .discountPrice p,
.productListWrapperTemplate .product .priceWrapp .discountPrice p{
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 600;
}

.homeWrapp .secondSide section .product .priceWrapp .discountPrice span,
.productListWrapperTemplate .product .priceWrapp .discountPrice span{
    background-color: var(--yellow);
    color: var(--text-primary);
    margin-left: 4px;
    font-size: 14px;
    padding: 2px 4px;
    border-radius: 4px;
}

.homeWrapp .secondSide section .product .priceWrapp .price,
.productListWrapperTemplate .product .priceWrapp .price{
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.homeWrapp .secondSide section .product .priceWrapp .price h3,
.productListWrapperTemplate .product .priceWrapp .price h3{
    font-size: 20px;
}

.homeWrapp .secondSide section .product .priceWrapp .price p,
.productListWrapperTemplate .product .priceWrapp .price p{
    font-size: 14px;
    font-family: 'VolteRegular', sans-serif;
}


.homeWrapp .secondSide section .adCard{
    grid-column: span 2;
    width: 100%;
    height: 90%;
    max-height: 361px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.homeWrapp .secondSide section .adCard img{
    height: 101%;
    object-fit: cover;
}

.homeWrapp .secondSide section .brands{
    background-color: var(--surface-smoke);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;

}

 @media screen  and (max-width: 1070px) {
    .homeWrapp .secondSide section .brands{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media screen  and (max-width: 900px) {
    .homeWrapp .secondSide section .brands{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.homeWrapp .secondSide section .brand{
    padding: 16px 24px;
    border-radius: 8px;
    background-color: white;
    width: 100%;
    max-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100px;
}

.homeWrapp .secondSide section .brand .img{
    max-height: 56px;
}

.homeWrapp .secondSide section .brand .img img{
    height: 100%;
}

.homeWrapp .secondSide .specialsActionsMob{
    margin-top: 32px;
    display: none;
    gap: 20px;
    align-items: center;
    padding: 0px 4px;
    font-size: 13px;
}

.homeWrapp .secondSide .specialsActionsMob .action{
    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {
    .firstSideMenuCont .head{
        width: 98%;
    }

    .firstSideMenuCont .categories, .homeWrapp .firstSide .foot .normalCats{
        padding: 0px 2%;
    }
}

@media screen and (max-width: 1280px) {
    .firstSideMenuCont{
        display: none;
    }
    .homeWrapp .secondSide section:last-child{
        margin-bottom: 100px;
    }
    .homeWrapp .secondSide{
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .homeWrapp .secondSide .specialsActionsMob{
        display: flex;
    }

    .homeWrapp .secondSide .specialInformations{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 20px;
        column-gap: 15px;
    }

    .homeWrapp .secondSide .specialInformations .info{
        max-width: 100%;
    }

    .homeWrapp .secondSide .specialInformations .info:nth-of-type(n+4) svg{
        top: 0px;
    }

    .homeWrapp .secondSide .specialInformations .border{
        height: 90%;
    }

    .homeWrapp .secondSide .categories{
        display: grid;
    }

    .homeWrapp .secondSide .mainBanner img{
        width: 100%;
    }

    .homeWrapp .secondSide section .adCard{
        max-height:none;
        width: 100%;
        height: fit-content;
    }
    .homeWrapp .secondSide section .adCard img{
        width: 100%;
        height: auto;
    }
    .homeWrapp .secondSide section .head a{
        text-align: right;
    }
}

@media screen and (max-width:700px) {
    .homeWrapp .secondSide section .brands{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 900px) {
    .homeWrapp .secondSide .bannersWrapp{
        width: 100%;
        max-width: 418px;
        overflow: hidden;
        justify-content: normal;
    }

    .homeWrapp .secondSide .bannersWrapp{
        display: none;
    }

    .homeWrapp .secondSide .bannersWrapp.mobile{
        display: flex;
    }

    .homeWrapp .secondSide .bannersWrapp .banner{
        min-width: 100%;
    }
}


@media screen and (max-width: 500px) {
    .homeWrapp .secondSide section .brands{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 700px) {
    .homeWrapp .secondSide .categories{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 600px) {
    .homeWrapp .secondSide .specialInformations{
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
        column-gap: 15px;
    }

    .homeWrapp .secondSide .specialInformations .info{
        max-width: 100%;
    }

    .homeWrapp .secondSide .specialInformations .info:nth-of-type(n+3) svg{
        top: 0px;
    }

    .homeWrapp .secondSide .specialInformations .border{
        height: 90%;
    }

    .homeWrapp .secondSide section .list,
    .productListWrapperTemplate{
        grid-template-columns: 1fr 1fr;
    }

/*     .homeWrapp .secondSide .mainBanner a,
    .homeWrapp .secondSide .bannersWrapp .banner a{
        display: none;
    } */

    .homeWrapp .secondSide section .list,
    .productListWrapperTemplate{
        column-gap: 10px;
    }

    .homeWrapp .secondSide section .product .image .badge,
    .productListWrapperTemplate .product .image .badge{
        top: 12px;
        left: 12px;
        font-size: 14px;
    }

    .homeWrapp .secondSide section .product .title h3,
    .productListWrapperTemplate .product .title h3{
        font-size: 14px;
    }

    .homeWrapp .secondSide section .product .image,
    .productListWrapperTemplate .product .image{
        margin-bottom: 0px;
    }

    .homeWrapp .secondSide section .product .title .smallInfo,
    .productListWrapperTemplate .product .title .smallInfo{
        font-size: 12px;
    }

    .homeWrapp .secondSide section .product .title .status,
    .productListWrapperTemplate .product .title .status{
        font-size: 14px;
    }

    .homeWrapp .secondSide section .product .priceWrapp .discountPrice,
    .productListWrapperTemplate .product .priceWrapp .discountPrice{
        font-size: 14px;
        margin: 10px 0px;
    }

    .homeWrapp .secondSide section .product .priceWrapp .price,
    .productListWrapperTemplate .product .priceWrapp .price{
        font-size: 16px;
    }

    .homeWrapp .secondSide section .product .priceWrapp .price p,
    .productListWrapperTemplate .product .priceWrapp .price p{
        font-size: 14px;
    }

    .homeWrapp .secondSide section .product .productInfo .cartWrapp .amountWrapp,
    .productListWrapperTemplate .product .priceWrapp .productInfo .cartWrapp .amountWrapp{
        font-size: 14px;
        padding: 0px 5px;
    }

    .homeWrapp .secondSide section .product .productInfo .cartWrapp .amountWrapp p,
    .productListWrapperTemplate .product .priceWrapp .productInfo .cartWrapp .amountWrapp p{
        font-size: 16px;
        text-align: center;
    }

}

@media screen and (max-width:375px) {
    .homeWrapp .secondSide{
        padding-left: 10px;
        padding-right: 10px;
    }

    .homeWrapp .secondSide section .head a{
        display: none;
    }

    .homeWrapp .secondSide section a.viewMore{
        display: block;
    }

    .homeWrapp .secondSide section .product .image .badge,
    .productListWrapperTemplate .product .image .badge{
        font-size: 10.5px;
        padding: 1.5px 3px;
    }
}


/* Sections */

.bodyMainWrapp .searchWrappSectionMain article.sectionHead{
    padding-top: 28px;
}
.bodyMainWrapp article.sectionHead h1{
    margin-top: 8px;
}

.bodyMainWrapp article.sectionHead .history{
    display: flex;
    align-items: center;
    gap: 3px;
}

.bodyMainWrapp article.sectionHead .history a,
.bodyMainWrapp article.sectionHead .history p{
    width: fit-content;
    display: block;
    color: var(--text-primary);
    text-decoration: none;
}

.bodyMainWrapp article.sectionHead .history a:hover{
    text-decoration: underline;
}

.bodyMainWrapp article.sectionHead .history span{
    color: var(--text-secondary);
}

@media screen and (max-width:400px) {
    .bodyMainWrapp article.sectionHead .history a,
    .bodyMainWrapp article.sectionHead .history p{
        font-size: 12px;
    }
}