/* ============================================
   NEW ARRIVALS MARQUEE SECTION — PREMIUM
   ============================================ */

.new-arrivals-section {
    padding: 4rem 0 3.5rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Ambient gold glow overlays */
.new-arrivals-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 55%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.new-arrivals-section::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

/* Top & bottom border lines in gold */
.new-arrivals-section>*:first-child {
    border-top: none;
}

/* ── Section header ── */
.new-arrivals-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

/* "Just In" pill */
.na-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: #9a7820;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    padding: 5px 20px;
    border-radius: 50px;
    margin-bottom: 1.1rem;
    box-shadow: none;
}

.na-sparkle {
    font-size: 0.6rem;
    animation: naSparkle 2s ease-in-out infinite alternate;
}

.na-sparkle:last-child {
    animation-delay: 1s;
}

@keyframes naSparkle {
    from {
        opacity: 0.4;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Title */
.new-arrivals-title {
    font-family: var(--font-english-display);
    font-size: 3.2rem;
    color: #1a1a1a;
    margin: 0 0 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    white-space: nowrap;
    text-shadow: none;
}

/* Gold shimmer accent word */
.na-title-accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #c9a227 0%, #f5d060 35%, #fff0a0 50%, #f5d060 65%, #c9a227 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: naShimmer 2.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.5));
}

@keyframes naShimmer {
    0% {
        background-position: 250% center;
    }

    100% {
        background-position: -250% center;
    }
}

/* Decorative gold lines flanking the title */
.na-deco-line {
    display: inline-block;
    width: 90px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.8), transparent);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Subtitle */
.na-subtitle {
    font-size: 0.82rem;
    color: rgba(80, 60, 20, 0.6);
    letter-spacing: 1.5px;
    margin: 0;
    font-style: italic;
}

/* ── Marquee ── */
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0 2rem;
}




.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* ── Arrival Card — Clean on light bg ── */
.arrival-card {
    flex-shrink: 0;
    width: 300px;
    height: 360px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.arrival-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(201, 162, 39, 0.5);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(201, 162, 39, 0.2);
}

/* Card Media */
.arrival-card-media {
    width: 100%;
    height: 72%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.arrival-card-media img,
.arrival-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.arrival-card:hover .arrival-card-media img,
.arrival-card:hover .arrival-card-media video {
    transform: scale(1.07);
}

/* Remove dark overlay */
.arrival-card-media::after {
    display: none;
}

/* "NEW" Badge — premium pulsing */
.arrival-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #8B0000, #c0392b);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    z-index: 3;
    box-shadow: 0 2px 12px rgba(139, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: naBadgePulse 3s ease-in-out infinite;
}

@keyframes naBadgePulse {

    0%,
    100% {
        box-shadow: 0 2px 12px rgba(139, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 2px 20px rgba(192, 57, 43, 0.9), 0 0 0 3px rgba(255, 255, 255, 0.05);
    }
}

/* Card Content — white */
.arrival-card-content {
    padding: 0.85rem 1.1rem 0.9rem;
    height: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    background: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

/* Subtle left gold accent line */
.arrival-card-content::before {
    display: none;
}

.arrival-card-category {
    font-size: 0.62rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.arrival-card-name {
    font-family: var(--font-english-display);
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 600;
}

.arrival-card-price {
    font-size: 1rem;
    color: #c9a227;
    font-weight: 800;
}

/* ── Animations ── */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .new-arrivals-section {
        padding: 2.5rem 0;
    }

    .new-arrivals-title {
        font-size: 2.4rem;
    }

    .arrival-card {
        width: 260px;
        height: 320px;
    }

    .marquee-track {
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .arrival-card {
        width: 230px;
        height: 290px;
    }

    .arrival-card-name {
        font-size: 0.95rem;
    }
}