/**
 * Estilos do Plugin Kognar Top 10
 */

.kognar-top10-item {
    position: relative;
    margin: 30px 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.kognar-top10-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.kognar-top10-item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    padding-bottom: 0;
}

.kognar-top10-item-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 3px solid #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.kognar-top10-item-content {
    padding: 20px;
    padding-top: 16px;
}

.kognar-top10-item-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kognar-top10-item-category-icon {
    font-size: 18px;
    line-height: 1;
}

.kognar-top10-item-category-text {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kognar-top10-item-body {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.kognar-top10-item-image-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.kognar-top10-item-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.kognar-top10-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kognar-top10-item-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.kognar-top10-item-specs {
    font-size: 16px;
    color: #4b5563;
    font-weight: 500;
    margin: 0;
}

.kognar-top10-item-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.kognar-top10-item-prices {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.kognar-top10-item-price-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #FFF;
    color: #dc2626;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

.kognar-top10-item-price-button:hover {
    background: #ffffff;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
    color: #b91c1c;
}

.kognar-top10-item-price-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.kognar-top10-item-price-text {
    white-space: nowrap;
}

/* Responsividade */
@media (max-width: 768px) {
    .kognar-top10-item-header {
        padding: 15px;
        padding-bottom: 0;
    }
    
    .kognar-top10-item-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .kognar-top10-item-content {
        padding: 15px;
        padding-top: 12px;
    }
    
    .kognar-top10-item-body {
        flex-direction: column;
        gap: 16px;
    }
    
    .kognar-top10-item-image-wrapper {
        width: 100%;
        height: 250px;
        margin: 0 auto;
    }
    
    .kognar-top10-item-name {
        font-size: 20px;
    }
    
    .kognar-top10-item-specs {
        font-size: 14px;
    }
    
    .kognar-top10-item-description {
        font-size: 14px;
    }
    
    .kognar-top10-item-prices {
        flex-direction: column;
    }
    
    .kognar-top10-item-price-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .kognar-top10-item-header {
        padding: 12px;
        padding-bottom: 0;
        gap: 12px;
    }
    
    .kognar-top10-item-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .kognar-top10-item-content {
        padding: 12px;
        padding-top: 12px;
    }
    
    .kognar-top10-item-category {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .kognar-top10-item-category-icon {
        font-size: 16px;
    }
    
    .kognar-top10-item-name {
        font-size: 18px;
    }
    
    .kognar-top10-item-image-wrapper {
        height: 200px;
    }
}

