.shop-product-list {
    padding: 20px 0;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-product-list h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

.search-box {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="text"] {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.search-form input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
}

.search-form button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.search-result-info {
    background: #f0f4ff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
}

.search-result-info strong {
    color: #667eea;
    font-weight: 600;
}

.clear-search {
    display: inline-block;
    margin-left: 15px;
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.clear-search:hover {
    text-decoration: underline;
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.version-card-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid #e8e8e8;
}

.version-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.version-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.version-card-icon img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.version-name {
    font-size: 22px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 15px;
}

.version-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 40px;
}

.version-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 20px;
}

.version-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.version-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
    color: #fff;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

@media (max-width: 768px) {
    .shop-product-list {
        padding: 15px 10px;
    }
    
    .list-header {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 20px;
    }
    
    .shop-product-list h1 {
        font-size: 20px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .search-form button {
        padding: 10px 15px;
        white-space: nowrap;
    }
    
    .search-result-info {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .versions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .version-card-item {
        padding: 20px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .version-name {
        font-size: 20px;
    }
    
    .version-desc {
        font-size: 13px;
        min-height: auto;
    }
    
    .version-price {
        font-size: 28px;
    }
}

