nav
{
    background-color: #00000071 !important;
}
.cats-header
{
    width: 100%;
    padding: 150px 0 100px;
    color: var(--secondary);
}
.cats-header h1
{
    text-align: center;
    font-family: hel-bold;
}
.cats-header p
{
    font-family: hel-reg;
    text-align: center;
    color: #8f8f8f;
    width: 60%;
    margin: auto;
    font-size: 15px;
}
.cats-header .primary-btn
{
    display: block;
    width: fit-content;
    margin: auto;
    line-height: 1;
    margin-top:5px;
}
.cats-cont-grid
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 5px;
}
.cats-box
{
    width: 100%;
    border-radius: 10px;
    padding: 5px;
    cursor: pointer;
}
.cats-box .img-box
{
    width: 100%;
    background-size: cover;
    height: 250px;
    border-radius: 5px;
    background-position: center center;
}
.cats-box span
{
    color: var(--secondary);
    font-family: hel-reg;
    line-height: 1;
    color: #979797;
    font-size: 13px;
}
.cats-box span:nth-child(odd)
{
    width: 30%;
}
.cats-box span:last-child
{
    text-align: right;
}
.cat-detail
{
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
}
.category-content
{
    width: 100%;
}
.category-header
{
    width: 100%;
    height: 100vh;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.category-header::before
{
    content: '';
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#11111196, #111111);
    position: absolute;
}
.category-header h1
{
    color: var(--secondary);
    display: block;
    mix-blend-mode: difference;
    text-align: center;
}
.subcat-menu 
{
    display: block;
    width: 100%;
    padding: 15px;
}
.subcat-menu span
{
    color: #d6d6d6;
    font-family: hel-med;
    z-index: 1;
    position: relative;
    font-size: 15px;
    display: block;
    text-align: center;
}
.subcats-grid
{
    width: fit-content;
    max-width: 50%;
    padding: 10px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    justify-content: center;
}
.subcats-grid span.active
{
    font-family: hel-med;
    background-color: var(--secondary);
    color: var(--primary);
}
.subcats-grid span
{
    width: fit-content;
    font-family: hel-reg;
    padding: 10px 20px;
    color: var(--secondary);
    border: 0.5px solid var(--secondary);
    border-radius: 50px;
    line-height: 1;
    transition: .3s;
    mix-blend-mode: difference;
    margin: 2.5px;
    cursor: pointer;
}
.subcats-grid span:hover
{
    background-color: var(--secondary);
    color: var(--primary);
}
.product-wrap
{
    padding: 100px 30px;
}
.main-title-wrap
{
    
    width: 100%;
    padding: 150px;
    background-color: #111111;
}
.products-cont h2
{
    font-size: 60px;
    text-transform: uppercase;
    text-align: center;
}

/* product page */
.wrapper
{
    width: 100%;
    display: flex;
    padding: 0 50px;
}
.wrapper .car-cont
{
    padding: 120px 0;
    width: 40%;
}
.wrapper .splide
{
    border-radius:5px;
    overflow: hidden;
}
.wrapper .splide__arrow
{
    background-color: rgba(0, 0, 0, 0);
    color: aqua;
}
.wrapper .car-cont img
{
    width: 100%;
}
.wrapper .splide__pagination__page
{
    height: 3px;
    width: 20px;
    background-color: #aeaeae;
    border-radius: 0;
}
.wrapper .splide__pagination__page.is-active
{
    background-color: #0c0c0c;
    transform: scale(1);
}
.det-cont
{
    width: 60%;
    padding: 120px 20px;
}
.det-cont h1
{
    color: var(--secondary);
    line-height: 1;
}
.det-cont span a
{
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
}
.det-cont span
{
    color: var(--secondary);
    font-family: hel-reg;
    font-size: 15px;
}
.det-cont span.label
{
    color: #999999;
    font-family: hel-med;
}
.prodet
{
    display: block;
}
.det-cont .primary-btn
{
    width: fit-content;
    display: block;
    margin: 10px 0 5px;

}
.det-cont p
{
    color: #999999;
    font-family: hel-reg;
    font-size: 15px;
}
@media screen and (max-width: 1100px)
{
    .main-title-wrap
    {
        position: relative;
        margin-top: -5px;
        padding: 100px;
    }
    .wrapper
    {
        display: block;
        padding: 0 30px;
    }
    .wrapper .car-cont
    {
        padding: 120px 0 20px;
        width: 100%;
    }
    .wrapper .det-cont
    {
        padding: 20px 0 50px;
        width: 100%;
    }
    .det-cont .primary-btn
    {
        margin: 20px 0;
    }
   .cats-cont-grid
   {
       grid-template-columns: repeat(2, 1fr);
   }
}
@media screen and (max-width: 900px)
{
    .cats-box .img-box
    {
        height: 200px;
    }
}
@media screen and (max-width: 500px)
{
    .det-cont h1
    {
        font-size: 40px;
    }
    .wrapper .prodet
    {
        font-size: 12px !important;
    }
    .det-cont p 
    {
        font-size: 12px
    }
    .cats-header h1
    {
        font-size: 27px;
        text-transform: uppercase;
    }
    .cats-header p
    {
        width: calc(100% - 40px);
    }
   .cats-cont-grid
   {
       grid-template-columns: repeat(1, 1fr);
   }
}