.shop-product-link
{
    display: block;
    text-decoration: none;
    color: inherit;
}

div.shop-menu
{
    position: fixed;
    top: 113px;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #0e0e0e;
    background-color: #ffd0ea;
    display: flex;
    justify-content: center;
    z-index: 11;
}

div.shop-menu-mobile
{
    display: none;
}

div.shop-menu-option
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 18px;
    min-width: 117px;
    cursor: pointer;
}

p.shop-menu-option-text
{
    cursor: pointer;
    font-size: 1.1rem;
}

.shop-menu-option.active .shop-menu-option-text {
    font-weight: 700;
}

p.shop-menu-option-text:hover
{
    font-weight: 700;
}

div.shop-container
{
    width: 100%;
    padding-top: 163px;
    padding-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #ffd0ea;
    box-sizing: border-box;
    row-gap: 48px;
}

div.shop-product
{
    aspect-ratio: 2 / 3;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-sizing: border-box;
    border: 1px solid #0e0e0e;
    margin: 0 0 -1px -1px;
    cursor: pointer;
    position: relative;
}

div.shop-product-image
{
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

img.shop-product-image
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

div.shop-product-text
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 72px;
    width: 100%;
    border-top: 1px solid #0e0e0e;
    box-sizing: border-box;
}

p.product_name
{
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
    font-weight: 700;
}

p.product_price
{
    font-size: 1.2rem;
    text-align: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-variant-numeric: tabular-nums;
}

div.mobile-category-menu
{
    display: none;
}

p.no-products-message
{
    font-size: 1.3rem;
    text-align: center;
    padding: 0px 0 48px;
    margin: 0;
}

/*hover animations*/
img.shop-product-image-main
{
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

img.shop-product-image-hover
{
    z-index: 1;
    transform: scale(1);
    transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
    /*transition: transform 2s ease-out;*/
}

img.shop-product-image-main:hover
{
    opacity: 0;
}

.shop-product-image:hover .shop-product-image-hover
{
    transform: scale(1.1);
}

span.product_price_original
{
    text-decoration: line-through;
    margin: 0 12px;
}

span.product_price_sale
{
    margin: 0 4px;
    font-weight: 700;
    color: #8A003C;
}

img.sale-overlay
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* #Mobile */
@media (max-width: 767.99px)
{
    div.mobile-category-menu
    {
        display: block;
        position: fixed;
        width: 250px;
        height: 100%;
        z-index: 99;
        background-color: #FFFFFF;
        border-right: 1px solid #000000;
        left: -250px;
    }

    div.shop-menu-option
    {
        display: none;
    }

    div.shop-menu-option-mob-side-menu
    {
        display: flex;
        cursor: pointer;
    }

    div.shop-menu-mobile
    {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    div.shop-menu-mobile-button
    {
        width: 180px;
        height: 100%;
        display: flex;
        align-items: center;
        padding: 12px;
        cursor: pointer;
    }

    div.shop-menu-mobile-button-filter
    {
        width: 180px;
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 5px;
        cursor: pointer;
    }

    div.mobile-filter-menu-heading
    {
        display: flex;
        align-items: center;
        margin-left: 24px;
    }

    div.mobile-filter-menu-heading p
    {
        font-family: 'Zen Kaku Gothic Antique', sans-serif;
        font-weight: 700;
        font-size: 1.6rem;
        margin: 0;
    }

    img.filter-icon
    {
        height: 100%;
    }

    div.shop-container
    {
        grid-template-columns: repeat(2, 1fr);
    }

    p.filter-select
    {
        font-size: 1.2rem;
    }

    p.clear-filter
    {
        font-size: 1.2rem;
        text-align: right;
        width: 100%;
    }

    p.filter-select:hover, p.clear-filter:hover
    {
        font-weight: 700;
    }
}

/* #Tablets */
@media (min-width: 768px) and (max-width: 1024px)
{
    div.shop-menu-option
    {
        margin: 0px 2px;
    }

    div.shop-container
    {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* #laptop Small laptops and large tablets */
@media (min-width: 1025px) and (max-width: 1280px)
{
    div.shop-container
    {
        grid-template-columns: repeat(3, 1fr);
    }
}