/* ============================================================
   STRAFOR PREMIUM SLIDER (FEATURED PRODUCTS)
============================================================ */
.sps-slider-wrapper {
    width: 100%;
    margin: 60px auto;
    position: relative;
    max-width: 1400px;
    /* Optional constraint */
    overflow: hidden;
    padding: 20px 0;
}

/* Header Area: Title & Arrows */
.sps-slider-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 30px;
    gap: 15px;
}

.sps-slider-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    text-align: center;
}

.sps-slider-nav {
    display: flex;
    gap: 10px;
}

.sps-nav-btn {
    background: transparent;
    border: none;
    color: #374151;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sps-nav-btn:hover {
    color: #ef4444;
    /* Strafor red accent */
    transform: scale(1.1);
}

.sps-nav-btn svg {
    width: 24px;
    height: 24px;
}

/* The Track */
.sps-slider-track-container {
    width: 100%;
    overflow: hidden;
}

.sps-slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Smooth scrolling native */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    padding: 10px 0;
}

.sps-slider-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari/Opera */
}

/* Individual Slide */
.sps-slide-item {
    flex: 0 0 calc(33.333% - 14px);
    /* Show 3 items at a time */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.sps-slide-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.sps-slide-link:hover {
    transform: translateY(-5px);
}

.sps-slide-img-wrap {
    width: 250px;
    height: 250px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid transparent;
    /* Ready for glow */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sps-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sps-slide-link:hover .sps-slide-img-wrap img {
    transform: scale(1.08);
}

/* Neon Glow Effect on Hover */
.sps-slide-link:hover .sps-slide-img-wrap {
    border-color: #ef4444;
    /* Base neon color (Strafor red) */
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5),
        0 0 30px rgba(239, 68, 68, 0.3),
        0 0 45px rgba(239, 68, 68, 0.1),
        inset 0 0 15px rgba(239, 68, 68, 0.2);
    /* Inset for an inner ring */
    transform: scale(1.02);
    /* Slight pop of the ring itself */
}

/* Slide Content */
.sps-slide-content {
    text-align: center;
    padding: 0 10px;
}

.sps-slide-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .sps-slide-item {
        flex: 0 0 calc(50% - 10px);
        /* 2 items on tablet */
    }
}

@media (max-width: 640px) {
    .sps-slide-item {
        flex: 0 0 calc(90%);
        /* 1 items on mobile */
        margin: 0 auto;
    }
}