.new-arrivals { padding: 60px 0; background: #fff; }

.arrivals-bg {
    background: #fdf7f0; /* Soft Peach/Cream background from your screenshot */
    padding: 50px 30px;
    border-radius: 20px;
}

.arrivals-header { text-align: center; margin-bottom: 30px; }
.section-title { font-size: 32px; color: #1B4D3E; font-weight: 700; margin-bottom: 10px; }
.section-title span { color: #D4AF37; }
.arrivals-header p { color: #777; font-size: 14px; max-width: 600px; margin: 0 auto; }

/* Filter Tabs */
.arrival-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; }
.filter-btn {
    padding: 10px 25px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    color: #555;
}
.filter-btn.active, .filter-btn:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #fff;
}

/* Product Cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: 0.4s;
    border: 1px solid transparent;
}
.product-card:hover { transform: translateY(-8px); border-color: #D4AF37; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.p-image-box { position: relative; border-radius: 8px; overflow: hidden; margin-bottom: 15px; }
.p-image-box img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: 0.5s; }
.p-badge { position: absolute; top: 10px; left: 10px; background: #D4AF37; color: #fff; font-size: 10px; padding: 4px 10px; border-radius: 4px; font-weight: bold; }
.p-wishlist { position: absolute; top: 10px; right: 10px; background: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #999; cursor: pointer; transition: 0.3s; }
.p-wishlist:hover { color: #e74c3c; transform: scale(1.1); }

.p-details { text-align: left; }
.p-title { font-size: 14px; font-weight: 500; color: #333; margin-bottom: 10px; line-height: 1.4; height: 40px; overflow: hidden; }

.p-pricing { display: flex; align-items: center; gap: 10px; }
.curr-price { font-size: 18px; font-weight: 700; color: #333; }
.old-price { font-size: 13px; color: #999; text-decoration: line-through; }
.p-discount { font-size: 13px; color: #28a745; font-weight: 600; }

.view-all-box { text-align: center; margin-top: 40px; }
.btn-view-all { 
    display: inline-block; padding: 12px 35px; border: 1px solid #D4AF37; 
    color: #D4AF37; border-radius: 30px; text-decoration: none; 
    font-weight: 600; transition: 0.3s;
}
.btn-view-all:hover { background: #D4AF37; color: #fff; }

/* Mobile */
@media (max-width: 992px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
    .arrival-tabs { overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; }
    .filter-btn { white-space: nowrap; }
}