.page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

.side-bar {
    width: 100%;
}

.filtercontent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-bar-title {
    background: rgb(179, 226, 131);
    color: #725c5c;
    padding: 12px 18px;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
}

.side-bar-title p {
    margin-top: 10px;
    color: #725c5c;
}

.side-bar-box {
    background: rgb(179, 226, 131);
    border-radius: 8px;

}

.side-bar-box h2 {
    padding: 10px 10px 0px;
    margin-bottom: 10px;
    color: #725c5c;
}

.filter-list {
    background: white;
    border: 1px solid black;
    border-radius: 8px;
    padding: 12px;
    max-height: 260px;
    overflow-y: auto;
    border-top-left-radius: 0;
    border-top-right-radius: 0;

}

.filter-list > label {
    display: block;
    margin-bottom: 8px;
    color: black;
    padding-left: 10px;
    cursor: pointer;
}

.product-area {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sort-label {
    color: black;
    margin-right: 6px;
}

.sort-btn {
    background: transparent;
    border: 1px solid black;
    color: black;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.sort-btn:hover {
    background: rgb(179, 226, 131);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-body {
    padding: 14px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.product-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-body .price {
    font-weight: bold;
    color: black;
    padding: 6px;
}

.product-bottom {
    padding-top: 5px;
}