.slider-section {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
    direction: rtl;
    background-color: #fff3e0;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

    .slider-header h2 {
        font-size: 20px;
        margin: 0;
    }

.show-all {
    display: inline-block;
    padding: 8px 18px;
    background-color: #ffffff;
    color: #d63384;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .show-all:hover {
        background-color: #d63384;
        color: #ffffff;
    }

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
}

.slide-1 {
    flex: 0 0 auto;
    width: 255px;
    aspect-ratio: 255 / 290;
}

.arrow-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    border: none;
    color: #fff;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.arrow-left {
    left: 6px;
}

.arrow-right {
    right: 6px;
}

.arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .slide-1 {
        width: 190px;
        aspect-ratio: 190 / 230;
    }

    .slider-track {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .slide-1 {
        width: 130px;
       
    }

    .slider-track {
        gap: 6px;
    }


    .slide-1 button {
        font-size: 12px !important;
    }
    .slide-1 .qty-btn {
       width:32px;
       height:32px;
    }
        .slide-1 .product-price {
            font-size: 15px !important;
            line-height: 1 !important;
            margin-bottom: 4px !important;
        }
    .slide-1 .old-price {
        font-size: 10px !important;
    }
    .slide-1 .qty-number {
        min-width:25px;
    }
        .slide-1 h3,
        .slide-1 h4 {
            font-size: 10px !important;
        }
}

.ont {
    display: flex;
    justify-content: start;
    align-items: center;
}

    .ont h2 {
        color: #d63384;
        font-size: 1.3rem;
        font-weight: 700;
        margin: 0;
        padding: 8px 16px;
        background-color: white;
        border-radius: 12px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.35);
    }


