* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            
        }

        .exovik-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-top: 10px;
        }

        .exovik-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }

        .exovik-tabs-container {
            position: relative;
            margin-bottom: 30px;
        }

        .exovik-tabs-wrapper {
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .exovik-tabs-wrapper::-webkit-scrollbar {
            display: none;
        }

        .exovik-tabs {
            display: flex;
            gap: 0;
            white-space: nowrap;
            padding: 5px 0;
        }

        .exovik-tab {
            padding: 12px 24px;
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
            color: #555;
            flex-shrink: 0;
        }

        .exovik-tab:first-child {
            border-radius: 4px 0 0 4px;
        }

        .exovik-tab:last-child {
            border-radius: 0 4px 4px 0;
        }

        .exovik-tab:hover {
            background-color: #e9e9e9;
        }

        .exovik-tab.active {
            background-color: #2874f0;
            color: white;
            border-color: #2874f0;
        }

        .exovik-content {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .exovik-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .exovik-card:hover {
            transform: translateY(-5px);
        }

        .exovik-card-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .exovik-card-content {
            padding: 15px;
        }

        .exovik-card-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .exovik-card-price {
            font-size: 18px;
            font-weight: 700;
            color: #2874f0;
            margin-bottom: 10px;
        }

        .exovik-card-desc {
            font-size: 14px;
            color: #666;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .exovik-card-button {
            display: inline-block;
            padding: 8px 16px;
            background-color: #2874f0;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .exovik-card-button:hover {
            background-color: #1c60c9;
        }

        @media (max-width: 768px) {
            .exovik-content {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .exovik-tab {
                padding: 10px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .exovik-content {
                grid-template-columns: 1fr;
            }
            
            .exovik-tab {
                padding: 8px 12px;
                font-size: 12px;
            }
        }