.products-section {
    padding: 60px 0;

}

.containers {
    padding: 0 20px;
 
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 40px;
    font-weight: 300;
}

.product-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.product-slider::-webkit-scrollbar {
    height: 8px;
}

.product-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-slider::-webkit-scrollbar-thumb {
    background: #e67e22;
    border-radius: 10px;
}

.product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e67e22;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: #2ecc71;
}

.product-badge.sale {
    background: #e74c3c;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-actions {
    bottom: 10px;
}

.quick-view, .add-wishlist {
    padding: 8px 13px;
    border: none;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-view {
    background: white;
    color: #333;
}

.add-wishlist {
    background: #333;
    color: white;
    width: 36px;
}

.quick-view:hover {
    background: #e67e22;
    color: white;
}

.add-wishlist:hover {
    background: #e74c3c;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.product-rating {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-rating span {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e67e22;
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #95a5a6;
    margin-left: 8px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #d35400;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff00;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1px solid rgba(0, 0, 0, 0.089);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: #000000;
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #2e2e2e;
    transform: scale(1.2);
}

.view-all {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #000000;
    border: 1px solid #00000041;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #141414;
    color: white;
}

.shop-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.shop-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 8px 15px;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    color: #777;
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    background: transparent;
}

.banner-admin-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 5px;
    z-index: 2;
}

.banner-admin-controls button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 5px;
}

.banner-admin-controls button:hover {
    background: #45a049;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .product-slider {
        gap: 15px;
    }
    
    .product-card {
        flex: 0 0 240px;
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .product-slider {
        gap: 10px;
    }
    
    .product-card {
        flex: 0 0 75%;
    }
    
    .slider-controls {
        margin-top: 20px;
    }
}