.products-sec {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-color) 100%);
    min-height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

    .products-sec .section-header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 3rem;
        padding: 0 2rem;
        position: relative;
    }

        .products-sec .section-header::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--primary-color-low) 0%, transparent 70%);
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 50%;
            z-index: 0;
            opacity: 0.6;
        }

        .products-sec .section-header .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--primary-color);
            color: var(--text-light);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .products-sec .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .products-sec .section-header p {
            font-size: 1rem;
            color: var(--text-dark-low);
            line-height: 1.6;
        }

.product-card-list {
    overflow: hidden;
    position: relative;
    padding: 0 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    touch-action: pan-y pinch-zoom;
}

.product-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
    flex: 0 0 calc(20% - 0.8rem);
    min-width: 200px;
    margin: 0 0.5rem;
    flex-shrink: 0;
    pointer-events: auto;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.product-image {
    position: relative;
    padding-top: 66%;
    overflow: hidden;
}

    .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 1;
}

.badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.badge-popular {
    background: #ff6b6b;
    color: white;
}

.badge-new {
    background: #4ecdc4;
    color: white;
}

.product-tags {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    z-index: 1;
}

.tag {
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
}

.tag-diet {
    color: #2ecc71;
}

.tag-weight-loss {
    color: #9b59b6;
}

.tag-muscle {
    color: #e67e22;
}

.product-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 2.8em;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1rem;
    margin-top: auto;
    font-weight: 600;
}

    .product-price .current-price {
        color: var(--primary-color);
        font-size: 1.1rem;
        font-weight: 700;
    }

    .product-price .old-price {
        color: var(--text-dark-low);
        font-size: 0.9rem;
        text-decoration: line-through;
        font-weight: 500;
    }

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.btn-select {
    flex: 1;
    padding: 0.6rem;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-details {
    padding: 0.6rem;
    background: var(--bg-color);
    color: var(--text-dark);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-color-dark);
}

.btn-details:hover {
    background: var(--bg-color-dark);
}

.product-wrapper {
    display: flex;
    gap: 1rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: grab;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    padding: 0 0.5rem;
}

    .product-wrapper.dragging {
        cursor: grabbing !important;
        cursor: -webkit-grabbing !important;
        transition: none;
    }

        .product-wrapper.dragging * {
            pointer-events: none;
            cursor: grabbing !important;
            cursor: -webkit-grabbing !important;
        }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    .slider-dot:hover {
        background: var(--primary-color);
        transform: scale(1.1);
    }

@media (max-width: 1400px) {
    .product-card-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-card {
        flex: 0 0 calc(25% - 0.75rem);
    }

    .products-sec .section-header h2 {
        font-size: 2.2rem;
    }

    .products-sec .section-header p {
        font-size: 0.9rem;
    }

    .product-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .product-card-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card {
        flex: 0 0 calc(33.333% - 0.667rem);
    }
}

@media (max-width: 992px) {
    .product-card-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .products-sec .section-header h2 {
        font-size: 1.8rem;
    }

    .products-sec .section-header p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .product-card-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .products-sec .section-header h2 {
        font-size: 1.6rem;
    }

    .products-sec .section-header p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .product-card-list {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }

    .product-content {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .btn-select,
    .btn-details {
        padding: 0.5rem;
        font-size: 0.7rem;
    }

    .product-card {
        flex: 0 0 calc(100% - 1rem);
    }
}
