@charset "utf-8";
/* CSS Document */


/* ================= MAIN LAYOUT ================= */
.container {
    display: flex;
    padding: 30px 6%;
    gap: 30px;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h4 {
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.filter-section ul {
    list-style: none;
}

.filter-section li {
    font-size: 13px;
    margin-bottom: 6px;
    color: #555;
    cursor: pointer;
}

.filter-section a:hover {
    color: #000;
    font-weight: 500;
}

/* PRODUCT AREA */
.product-area {
    flex: 1;
    display: grid;
	 grid-template-columns: repeat(auto-fill, minmax(440px, 440px));
	align-self: start;
	gap: 20px;

}
.intoprod {
    height:100px;

}

.product-area h2 {
   
    font-size: 20px;
}

/* PRODUCT CARD */
.product-card {
    display: flex;
    background: #fff;
	width: 450px;
	align-items: start;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    transition: 0.2s;
}
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 15px;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
	

.product-card {
    padding: 12px;
}

.product-card img {
    width: 120px;
    height: 120px;
    margin-right: 15px;
}

.product-info h3 {
    margin-bottom: 6px;
}

.product-info p {
    margin-bottom: 3px;
}
	
	
.info-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

}

.meta {
    font-size: 12px;
    color: #888;
	
}



.price {
    font-weight: bold;
    margin-bottom: 6px;
}
	




/* FOOTER */
footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* RESPONSIVE */
	@media(max-width: 650px) {



   

    .container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .product-card {
     
		
    }


}
	#genreList li:nth-child(n+16) {
    display: none;
}
#genreList.show-all li {
    display: list-item;
}
.trade-btn {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;

    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    transition: 0.2s;
	
    display: inline-block;
    text-decoration: none;
	
}


.trade-btn:hover {
    background-color: #218838;
}
.buy-area {
    display: flex;
    flex-direction: column;   /* stack vertically */
    align-items: flex-end;    /* push to right */
}