/* ===== NEW ARRIVAL SECTION ===== */

#home-new-arrival h2 {
	font-family: 'Poppins', sans-serif !important;
	font-weight: 600 !important;
	color: #000 !important;
}

.new-arrival-card {
	border: 1px solid #eee;
	padding: 15px;
	transition: 0.3s;
	background: #fff;
    border-radius: 10px; 
}

.new-arrival-card:hover {
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transform: translateY(-4px);
}

.new-arrival-card img {
	width: 100%;
	height: auto;
}

.new-arrival-card .product-title a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
}

.new-arrival-card .price {
	font-weight: 600;
}

/* Add to cart button */
.new-arrival-card .button {
	margin-top: 8px;
	width: 100%;
}

/* ===== MOBILE CONTROL ===== */
@media (max-width: 767px) {

	/* Max 3 rows × 2 products = 6 items */
	#home-new-arrival .col-6:nth-child(n+7) {
		display: none;
	}

	.new-arrival-card {
		padding: 10px;
	}
}
