.new-arrivals-section {
    background: #f4f5f7;
    padding: 60px 0 70px;
}

.new-arrivals-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.new-arrivals-section .section-divider {
    width: 48px;
    height: 3px;
    background: #111;
    margin: 8px auto 6px;
    border-radius: 2px;
}

.new-arrivals-section .section-subtitle {
    font-size: 0.875rem;
    color: #888;
    letter-spacing: 0.02em;
}

/* ---- Product Card ---- */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ebebeb;
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.11);
    transform: translateY(-3px);
}

/* ---- Badge ---- */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #111;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-badge.badge-hot   { background: #e63946; }
.product-badge.badge-trend { background: #2b7a78; }
.product-badge.badge-sale  { background: #f4a261; color: #111; }
.product-badge.badge-new   { background: #111; }

/* ---- Action Buttons ---- */
.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.16s, border-color 0.16s;
    text-decoration: none;
    color: #444;
}

.action-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.action-btn svg {
    width: 15px;
    height: 15px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Product Image ---- */
.product-img-wrap {
    position: relative;
    background: #f9f9f9;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}

/* ---- Product Info ---- */
.product-info {
    padding: 14px 14px 16px;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 12px;
}

.price-original {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

.price-current {
    font-size: 1.05rem;
    font-weight: 800;
    color: #111;
}

/* ---- Add to Cart Button ---- */
.btn-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    background: black;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s ease;
    text-decoration: none;
}


.btn-add-cart svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---- Responsive Grid ---- */
/* Mobile: 2 columns, Desktop: 4 columns handled by Bootstrap col classes */

@media (max-width: 575.98px) {
    .new-arrivals-section {
        padding: 40px 0 50px;
    }
    .new-arrivals-section .section-title {
        font-size: 1.5rem;
    }
    .product-info {
        padding: 10px 10px 12px;
    }
    .product-name {
        font-size: 0.8rem;
    }
    .price-current {
        font-size: 0.95rem;
    }
    .btn-add-cart {
        font-size: 0.75rem;
        padding: 9px 0;
    }
}