body {
    font-family: "Fira Sans", sans-serif;
}

.product {
    /* border: 1px red dotted; */
    padding: 1rem;
}

.product img {
    width: 100%;
}

.container {
    gap: 3rem;
    max-width: 60rem;
    margin: 2rem auto;
}

.product-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


/* product photo */

.product-photo {
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    aspect-ratio: 1/1;

    position: relative;
    display: grid;
}

.product-photo img {
    width: 90%;
    place-self: center;
}

.like-button {
    position: absolute;
    top: -1.25em;
    left: -1.25em;
    width: 2.5em;
    height: 2.5em;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid #bdbdbd;
    background-color: #ffffff;
}

.like-button img {
    width: 80%;
}

.product-photo img {
    grid-row: 1/2;
    grid-column: 1/2;
}

.product-photo .product-tag {
    grid-row: 1/2;
    grid-column: 1/2;
    place-self: end;
    margin: 1em;
    padding: 0.3em 1em;
    text-transform: uppercase;
    background-color: #d0cdcd;
    border-radius: 9999px;
    font-size: 0.8rem;
}

.product-photo .product-tag-special {
    background-color: #ffd540;
}



/* product */

.product-category {
    color: #767676;
    margin: 0.5rem 0rem;
}

.product-name {
    margin: 0.3rem 0rem;
    line-height: 1.4em;
}

.product-price {
    font-size: 1.3rem; 
    margin: 0.3rem 0rem;
}

.product-price .current-price {
    border: 1px solid #bdbdbd;
    display: inline-block;
    margin: 0.3rem 0rem;
    padding: 0.3em 1em;
    border-radius: 8px;
    font-weight: 500;
}

.product-price .old-price {
    font-weight: 300;
    text-decoration-thickness: 1px;
}

/* sidebar stuff */

.sidebar h3 {
    font-size: 1.5em;
    color: #767676;
}

.categories ul {
    list-style-type: none;
    padding: 0;
}

.categories li {
    font-weight: 400;
}

.categories li .quantity {
    font-weight: 200;
}

.filter-group {
    padding: 1rem;
    background-color: rgb(237, 237, 237);
    border-radius: 15px;
}

.filter-group label {
    display: block;
}

