.cursor-follower
{
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    position: fixed;
    border-radius: 20px;
    mix-blend-mode: difference;
    z-index: 999;
}
h1
{
    font-family: hel-bold;
    font-size: 55px;
    line-height: 1.2;
    margin: 0;
}
.primary-btn
{
    text-decoration: none;
    font-family: 'hel-med';
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 15px;
    transition: .3s;
    color: var(--secondary);
    display: block;
    width: fit-content;
    line-height: 1;
    border: 0.5px solid #b6b6b6;
    background-color: #00000000 ;
}
.primary-btn:hover
{
    background-color: var(--secondary);
    color: var(--primary);
}
.secondary-btn
{
    text-decoration: none;
    line-height: 1;
    font-family: 'hel-reg';
    padding: 10px 20px;
    border-radius: 5px;
    transition: .3s;
    font-size: 15px;
    color: var(--secondary);
}
.secondary-btn:hover
{
    background-color: #ffffff4a;
    backdrop-filter: blur(10px);
}
.lowerhead
{
    color: var(--secondary);
    text-align: center;
    font-family: hel-reg;
    text-transform: uppercase;
    font-size: 20px;
    background-color: var(--primary);
}
.upperhead
{
    color: var(--secondary);
    font-family: hel-bold;
    font-size: 50px;
    line-height: 1;
}
.sub-heading
{
    font-family: hel-reg;
    text-align: center;
    display: block;
    color: #989898;
}
.product-wrap
{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: center;
}
.product-box
{
    width: 100%;
    background-color: #16161600;
    padding: 10px;
    border-radius: 10px;
    border: 0.5px solid #434343;
    cursor: pointer;
}
.product-box img
{
    width: 100%;
    border-radius: 5px;
}
.product-box h4
{
    color: var(--secondary);
    font-family: hel-med;
    text-transform: capitalize;
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
}
.product-box span
{
    color: var(--secondary);
    font-family: hel-reg;
    font-size: 13px;
    line-height: 1;
}
.pro-wrap
{
    padding: 5px 0 0;
}
.pro-detail
{
    display: flex;
    justify-content: space-between;
}
.msg
{
    margin: 0;
    color: var(--secondary);
    font-family: hel-reg;
    display: block;
    margin-bottom: 10px;
}
@media screen and (max-width: 1200px)
{
    .cursor-follower
    {
        display: none;
    }
    .product-wrap
    {
        grid-template-columns: repeat(3, 1fr);
    }    
}
@media screen and (max-width: 900px)
{
    .upperhead
    {
        font-size: 34px;
    }   
    .product-wrap
    {
        grid-template-columns: repeat(2, 1fr);
    }   
    
}
@media screen and (max-width: 600px)
{
    .product-wrap
    {
        grid-template-columns: repeat(1, 1fr);
    }   
    
}