﻿


    .tabios-wrapper {
        width: 100%;
        position: relative;
    }

    .tabios {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        scrollbar-color: #ccc #f1f1f1;
        border-bottom: 2px solid #dee2e6;
        padding-bottom: 2px;
        gap: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .tabios::-webkit-scrollbar {
        height: 6px;
    }

    .tabios::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .tabios::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    .tabios::-webkit-scrollbar-thumb:hover {
        background: #aaa;
    }

    .tabio-label {
        padding: 12px 24px;
        background: #fff;
        border: 1px solid #dee2e6;
        border-bottom: none;
        border-radius: 6px 6px 0 0;
        cursor: pointer;
        white-space: nowrap;
        font-size: 15px;
        color: #495057;
        transition: all 0.2s;
        flex-shrink: 0;
        position: relative;
        display: block;
    }

        .tabio-label:hover {
            background: #e9ecef;
            color: #212529;
        }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .tabios {
        overflow-x: hidden;
    }

        .tabios:hover {
            overflow-x: auto;
        }

    @media (hover: none) and (pointer: coarse) {
        .tabios {
            overflow-x: auto;
        }
    }

    @media (max-width: 480px) {
        .tabio-label {
            padding: 8px 16px;
            font-size: 13px;
        }
    }

    .tabiosHolder{
        background-color:#ffffff;
        padding:10px 0px 10px 0px;
    }





















    
    .productimo-card {
        background: white;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        height: 100%;
    }

    .productimo-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .productimo-body {
        padding: 15px;
    }

    .productimo-title {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        margin-bottom: 10px;
        height: 48px;
        overflow: hidden;
        text-align: center;
    }

    @media (max-width: 768px) {
        .productimo-img {
            height: 180px;
        }

        .productimo-title {
            font-size: 15px;
            height: 45px;
        }
    }













