.categories-section {
    margin: 0 auto;
    max-width: 1420px;
    overflow: hidden;
}

.slideshow-container {
    overflow: hidden;
    position: relative;
    margin: auto;
}

.slide {
    display: none;
    position: relative;
    height: 500px;
    margin: auto;
    background: linear-gradient(135deg, #180d03 0%, #151311 100%);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    padding: 0px 60px;
    user-select: none;
}

.slide::before {
    content: '';
    position: absolute;
    top: -35%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.372);
    border-radius: 50%;
    z-index: 0;
    animation: fadeInLeft 0.6s ease-in-out;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: 20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.172);
    border-radius: 50%;
    z-index: 0;
    animation: fadeInUp 0.8s ease-in-out;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: grabbing;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(120px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(120px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-120px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.slide-content {
    width: 600px;
    z-index: 2;
    animation: fadeInDown 0.6s ease-in-out;
}

.hero-label {
    color: #ef4444;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: .5rem;
}

.hero-btn {
    background: var(--primary-color);
    color: white;
    padding: .8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
    background: var(--hover-color);
    transform: scale(1.05);
}

.hero-images {
    width: 100%;
}

.hero-images img {
    width: 100%;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s;
}

.weekend-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-radius: 8px;
    border-top-left-radius: 0;
}

.slide-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: 16px;
    color: #a0a3bd;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.price-label {
    font-size: 20px;
    color: #a0a3bd;
    font-weight: 400;
}

.slide-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: yellow;
}

.slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-in-out;
    height: 100%;
}

.slide-image img {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Dots Navigation */
.dots-container {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
}

.dot:hover {
    background: var(--primary-color);
    width: 40px;
}

/* Arrow Navigation */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 24px;
    padding: 20px 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.arrow.prev {
    left: 20px;
}

.arrow.next {
    right: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slideshow-container {
        padding: 0 .5rem;
    }

    .slide {
        height: 500px;
        padding-top: 1rem;
    }

    .slide-title {
        font-size: 52px;
    }

    .slide-price {
        font-size: 40px;
    }

    .dots-container {
        left: 60px;
    }
}

@media (max-width: 768px) {
    .slideshow-container {}

    .slide {
        padding: 0;
        height: fit-content;
        background-color: red;
    }

    .slide-content {
        padding: 2rem;
        max-width: 350px;
    }

    .weekend-badge {
        font-size: .7rem;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 1.2rem;
    }

    .slide-subtitle {
        margin-bottom: 10px;
        font-size: .7rem;
    }

    .price-label {
        font-size: .6rem;
    }

    .slide-price {
        font-size: 1.1rem;
    }

    .price-container {
        margin-bottom: 10px;
    }

    .slide-image {}

    .slide-image img {
        height: 100%;
    }

    .dots-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }

    .arrow {
        padding: 15px 12px;
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .slide {
        flex-direction: column;
        height: 600px;
        text-align: center;
        padding: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 13px;
    }

    .slide-price {
        font-size: 2.1rem;
    }

    .price-label {
        font-size: 16px;
    }

    .shop-btn {
        padding: 15px 40px;
        font-size: 13px;
    }

    .weekend-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
}