/* --- NEW ARRIVALS PAGE --- */

.new-arrivals-wrapper {
    padding: 160px 0 100px;
    background: #ffffff;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--navy);
    margin: 20px 0;
}

.badge-white {
    display: inline-block;
    background: linear-gradient(90deg, var(--navy), var(--blue));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-white.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.text-red {
    background: linear-gradient(90deg, var(--navy), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: var(--gray);
    font-size: 16px;
}


/* --- THE GRID --- */

.new-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.new-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
}

.new-card img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    display: block;
    transition: 0.5s;
}


/* New Tag */

.new-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    z-index: 10;
    background: var(--navy);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}


/* Card Info */

.product-details {
    padding: 20px;
}

.cat-tag {
    font-size: 11px;
    color: var(--blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-details h4 {
    font-size: 16px;
    color: var(--navy);
    margin: 8px 0;
    font-weight: 600;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.card-footer .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
}

.cart-mini {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: var(--navy);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-mini:hover {
    background: var(--blue);
    transform: scale(1.1);
}

.new-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.new-card:hover img {
    transform: scale(1.05);
}

/* Center Button */
.center-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-white {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-white:hover {
    background: var(--blue);
    transform: translateY(-2px);
}


/* Empty message */
.empty-text {
    text-align: center;
    padding: 60px;
    color: var(--gray);
    font-size: 16px;
    grid-column: 1 / -1;
}











